mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 21:25:55 +00:00
14 lines
368 B
TypeScript
14 lines
368 B
TypeScript
import { Button } from "@/examples/base/ui/button"
|
|
import { ArrowUpIcon } from "lucide-react"
|
|
|
|
export default function ButtonRounded() {
|
|
return (
|
|
<div className="flex gap-2">
|
|
<Button className="rounded-full">Get Started</Button>
|
|
<Button variant="outline" size="icon" className="rounded-full">
|
|
<ArrowUpIcon />
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|