Components
Loading preview...
A button allows a user to perform an action, with mouse, touch, and keyboard interactions. On the surface, building a custom styled button seems simple. However, there are many cross browser inconsistencies in interactions and accessibility features to consider. Button handles all of these interactions for you, so you can focus on the styling.
@jolbol1
npx shadcn@latest add https://21st.dev/r/jolbol1/buttonimport { Button } from "@/components/ui/button"
export function ButtonDemo() {
return <Button>Button</Button>
}