Components
Loading preview...
Here is Button component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/button-1import { ChevronRight } from "lucide-react"
import { Button } from "@/components/ui/button-1"
export default function ButtonIcon() {
return (
<Button variant="outline" size="icon" aria-label="Next">
<ChevronRight className="size-4" />
</Button>
)
}