0.63.0 • Published 1 year ago
@spwntch/ui v0.63.0
Spawntech's React Ui Library
This package is currently pre-release.
What's in here?
This library includes all of Spawntech's base react.js
components.
NOTE:
- In the majority of cases, the base components that we offer are standard implementations of shadcn/ui components.
- In some cases, we've added our own styling or additional features.
Component | Purpose |
---|---|
Accordion | Standard shadcn/ui accordion |
Badge | Standard shadcn/ui badge |
Button | Standard shadcn/ui button |
Card | Standard shadcn/ui card |
Dropdown Menu | Standard shadcn/ui dropdown-menu |
Menu Bar | Standard shadcn/ui menubar |
Navigation Menu | Standard shadcn/ui navigation-menu |
Sheet | Standard shadcn/ui sheet |
Getting Started
- Install the package
npm i @spwntch/ui
- Use our components
import { Button } from "@spwntch/ui";
export default function MyComponent() {
return <Button>click me</Button>;
}