@jasondhakhwa/swift-ui-kit
v1.0.5
Published
A lightweight, tree-shakable UI component library built with React 19 and Ant Design
Maintainers
Readme
@jasondhakhwa/swift-ui-kit
A lightweight, customizable React UI component library built with React 19 and Ant Design. Designed for modularity, performance, and easy integration into React and Next.js projects.
🚀 Features
- Custom components extending Ant Design:
CustomButton,CustomInput,CustomCard, and more - Handy React hooks, e.g.,
useFormHandlerfor easy form state management - Utility functions such as validators and token helpers
- Fully tree-shakable and ESM-compatible
- Written in TypeScript for type safety
- Lightweight bundle optimized for performance (< 300 KB)
📦 Installation
npm install @jasondhakhwa/swift-ui-kit
# or
yarn add @jasondhakhwa/swift-ui-kit
## Usage
Show how to import and use your components/hooks/utilities.
Example:
```tsx
import { CustomButton } from '@jasondhakhwa/swift-ui-kit';
function App() {
return <CustomButton type="primary">Click me</CustomButton>;
}
# ant-ui-kit-npm