@littlehorse-enterprises/ui
v1.0.4
Published
LittleHorse's UI component library
Downloads
13
Keywords
Readme
LittleHorse UI Component Library
LittleHorse's UI component library built with shadcn/ui.
Installation
npm install @littlehorse-enterprises/uiUsage
Make sure to import the CSS file in your main entry point as this has the required styles for the components to work.
import '@littlehorse-enterprises/ui/ui.css'import { Button } from '@littlehorse-enterprises/ui/button'
export default function App() {
return (
<Button variant="default">
Click me
</Button>
)
}Development
# Install dependencies
npm install
# Start development server
npm run dev
# Build library
npm run build