Components
An enhanced button component with various animated hover effects and icon support.
Features
npx shadcn@latest add https://21st.dev/r/jakobhoeg/buttonLoading preview...
"use client"
import { ArrowRight } from "lucide-react"
import { Button } from "@/components/ui/button"
function ButtonExpandIconRight() {
return (
<Button variant="expandIcon" Icon={() => <ArrowRight className="h-4 w-4" />} iconPlacement="right">
Icon right
</Button>
)
}
export {
ButtonExpandIconRight
}