mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
* feat(button): add destructive variant * docs(button): add example for destructive variant
6 lines
149 B
TypeScript
6 lines
149 B
TypeScript
import { Button } from "@/components/ui/button"
|
|
|
|
export function ButtonDestructive() {
|
|
return <Button variant="destructive">Destructive</Button>
|
|
}
|