mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 22:54:18 +00:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import { ChevronRight } from "lucide-react"
|
|
|
|
import { Button } from "@/registry/default/ui/button"
|
|
|
|
export default function ButtonIcon() {
|
|
return (
|
|
<Button variant="outline" size="icon">
|
|
<ChevronRight className="h-4 w-4" />
|
|
</Button>
|
|
)
|
|
}
|