mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import { Button } from "@/examples/radix/ui/button"
|
|
import { ArrowUpIcon } from "lucide-react"
|
|
|
|
export default function ButtonRounded() {
|
|
return (
|
|
<div className="flex flex-col gap-8">
|
|
<Button variant="outline" size="icon" className="rounded-full">
|
|
<ArrowUpIcon />
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|