0.1.4 • Published 8 months ago

@thirdbracket-ui/core v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

@thirdbracket-ui/core

A modern, accessible, and beautiful React UI component library built with Tailwind CSS.

Features

  • 🎨 Modern and clean design
  • ♿️ Accessible components following WAI-ARIA guidelines
  • 🌗 Dark mode support out of the box
  • 📱 Responsive and mobile-friendly
  • 🔧 Highly customizable with Tailwind CSS
  • 📦 Tree-shakeable and lightweight
  • 💪 Written in TypeScript
  • ⚡️ Server Component ready

Installation

npm install @thirdbracket-ui/core

Quick Start

  1. Install the package and its peer dependencies:
npm install @thirdbracket-ui/core react react-dom
  1. Add the following to your tailwind.config.js:
module.exports = {
  content: [
    // ...
    "./node_modules/@thirdbracket/ui/**/*.{js,ts,jsx,tsx}",
  ],
  // ...
}
  1. Import and use components:
import { Button, Card } from '@thirdbracket-ui/core'

export default function App() {
  return (
    <div>
      <Card
        title="Welcome"
        description="Start building beautiful apps today."
        href="/getting-started"
      />

      <Button variant="default">
        Get Started
      </Button>
    </div>
  )
}

Available Components

  • Button: Versatile button component with multiple variants
  • Card : Flexible card component for displaying content

Contributing

We welcome contributions! Please see our contributing guide for details.

License

MIT © Musabbir Sagar

0.1.4

8 months ago

0.1.3

8 months ago

0.1.2

8 months ago

0.1.1

8 months ago

0.1.0

8 months ago