@dimcheify/tiny-kit
v0.4.5
Published
A modern UI component library for React
Readme
Tiny Kit
A modern UI component library for React
Installation
npm install @dimcheify/tiny-kit
# or
pnpm add @dimcheify/tiny-kit
# or
yarn add @dimcheify/tiny-kitUsage
Import core css file in the root of your project.
import '@dimcheify/tiny-kit/index.css';Then just import UI components.
import { Title, Button } from '@dimcheify/tiny-kit';
function App() {
return (
<div>
<Title>Welcome to Tiny Kit</Title>
<Button>Get Started</Button>
</div>
);
}You can now easily redefine component render in HTML DOM and use its attributes
<Button component="a" href="https://domain.com">
Get Started
</Button>✨ Features
- 🎨 Modern and clean design
- 🚀 Lightweight and fast
- 📦 Tree-shakeable
- 💪 TypeScript support
- ⚡️ Zero dependencies (peer deps only)
📄 License
MIT © Dmitrij Perelygin
