Button 3

PreviousNext

A rounded button with icon and text content

Docs
shadcn-studiocomponent

Preview

Loading preview…
registry/new-york/components/button/button-03.tsx
import { StarIcon } from 'lucide-react'

import { Button } from '@/registry/new-york/ui/button'

const ButtonRoundedDemo = () => {
  return (
    <Button className='rounded-full'>
      <StarIcon />
      Star
    </Button>
  )
}

export default ButtonRoundedDemo

Installation

npx shadcn@latest add @shadcn-studio/button-03

Usage

import { Button03 } from "@/components/button-03"
<Button03 />