0.0.4 • Published 5 months ago

cl-ds v0.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

Component Library

A modern React component library built with TypeScript, Tailwind CSS, and Radix UI primitives.

Installation

npm install cl-ds

Usage

  1. Import the CSS:
import 'cl-ds/styles.css'
  1. Import and use components:
import { Button, Input, CardWithForm } from 'cl-ds'

function App() {
  return (
    <div>
      <Button>Click me</Button>
      <Input placeholder="Enter text" />
      <CardWithForm onSubmit={(data) => console.log(data)} />
    </div>
  )
}

Features

  • 🎨 Fully customizable with CSS variables
  • 📦 Tree-shakeable exports
  • 🔒 Type-safe with TypeScript
  • ♿️ Accessible components built on Radix UI
  • 🎭 Comprehensive Storybook documentation
  • ⚡️ Lightweight and performant

License

MIT