A custom React component library
npm install zapi-uibash
npm install zapi-ui
or
yarn add zapi-ui
`
Import CSS
import 'zapi-ui/dist/index.css';
🚀 Usage
Import and use any component from the library:
`tsx
import { Checkbox } from 'zapi-ui';
function App() {
const [checked, setChecked] = React.useState(false);
return (
checked={checked}
onChange={(e) => setChecked(e.target.checked)}
label="Accept Terms"
description="Please accept the terms and conditions"
/>
);
}
`
✨ Features
- Built with plain CSS – no dependency on Tailwind or other frameworks
- Accessible and keyboard-friendly
- Custom styling via className`