@kawaiininja/ui
v1.0.9
Published
A modern React component library with 45+ premium components for building beautiful web applications
Maintainers
Readme
@kawaiininja/ui
A premium React UI component library for building beautiful web applications.
Component Structure
ui/
├── dist/ # Compiled output
└── src/
└── components/
└── section/ # Section layout components
├── Section.tsx
├── SectionHeader.tsx
└── SectionLabel.tsxInstallation
npm install @kawaiininja/uiUsage
import { Section, SectionHeader, SectionLabel } from "@kawaiininja/ui";
function MyPage() {
return (
<Section space="lg">
<SectionHeader title="My Section" subtitle="This is a subtitle" />
<SectionLabel>Label</SectionLabel>
<div>Content goes here...</div>
</Section>
);
}Features
- TypeScript Support: Fully typed components.
- Modern Design: Built for premium user interfaces.
- Flexible: customizable props and styling.
Scripts
npm run build: Build the package (TypeScript compilation).npm publish: Publish to npm (use the providedpublish-ui-*.batscripts in the root).
