button-rounded

PreviousNext
Docs
takiexample

Preview

Loading preview…
registry/new-york/examples/button-rounded.tsx
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>
  )
}

Installation

npx shadcn@latest add @taki/button-rounded

Usage

import { ButtonRounded } from "@/components/button-rounded"
<ButtonRounded />