kku-ui
v0.0.475
Published
<h1 align="center">✨ KKU-UI: React Components Libirary ✨</h1>
Downloads
21
Readme
🎁 Components
| 컴포넌트 \ 지원 | 기능 | 디자인 | 접근성 |테스트 코드| 스토리북 | 사용/배포 |
|:-----------------------|:---:|:---:|:---:|:----:|:---:|:-----:|
| <KButton />
|✅|✅| ✅ |✅|✅|✅|
| <KTextField />
|✅|✅| ✅ |✅|✅|✅|
| <KIcon />
|✅|✅| ✅ |✅|✅|✅|
| <KSelect />
|✅|✅| ⚠️ |✅|✅|✅|
| <KCheckbox />
|✅|✅| ✅ |✅|✅|✅|
| <KCheckboxGroup />
|✅|✅| ✅ |✅|✅|✅|
| <KDropHolder />
|✅|✅| ⚠️ |✅|✅|✅|
| <KRadio />
|✅|✅| ✅ |✅|✅|✅|
| <KChip />
|✅|✅| ✅ |✅|✅|✅|
| <KSwitch />
|✅|✅| ✅ |✅|✅|✅|
| <KCard />
|✅|✅| ✅ |✅|✅|✅|
| <KAccordion />
|✅|⚠️| ✅ |⚠️|✅|✅|
| <KModal />
|✅|✅| ✅ |✅|✅|✅|
| 🏃🏻♂️.. |✨|✨| ✨ |✨|✨|✨|
✅ Good ⚠️ Not Good 🧑🏻💻 Trying
📆 Planning
📌 GitHub Project
📦 Install
npm install kku-ui
yarn add kku-ui
⚙️ Initial Setting
// Entry Point 🏃🏻♂️
import 'kku-ui/lib/styles/index.css'
🧑🏻💻 Use Examples
import { KButton } from 'kku-ui'
export default function Component() {
return (<KButton primary label="Hello World!" />);
}