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