mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 20:55:47 +00:00
15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
import { ArrowUpIcon } from "lucide-react"
|
|
|
|
import { Button } from "@/styles/base-nova/ui/button"
|
|
|
|
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>
|
|
)
|
|
}
|