mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
22 lines
591 B
TypeScript
22 lines
591 B
TypeScript
import { Button } from "@/examples/radix/ui/button"
|
|
import { ArrowRightIcon } from "lucide-react"
|
|
|
|
export function ButtonExamples() {
|
|
return (
|
|
<div className="flex flex-wrap items-center gap-4">
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="outline">Cancel</Button>
|
|
<Button>
|
|
Submit <ArrowRightIcon />
|
|
</Button>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="destructive">Delete</Button>
|
|
<Button size="icon">
|
|
<ArrowRightIcon />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|