import { ArrowUpIcon } from "lucide-react"
import { Button } from "@/registry/new-york/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>
)
}
npx shadcn@latest add @taki/button-roundedimport { ButtonRounded } from "@/components/button-rounded"<ButtonRounded />