Button/button-destructive-

PreviousNext

A button/button-destructive- example

Docs
shadcnblocksblock

Preview

Loading preview…
code/example/button/button-destructive-7.tsx
import { Button } from "@/components/ui/button";
import { Kbd } from "@/components/ui/kbd";

export const title = "Button with Kbd";

const Example = () => (
  <Button className="gap-2" variant="destructive">
    Button
    <Kbd className="bg-white/20 text-white">⌘K</Kbd>
  </Button>
);

export default Example;

Installation

npx shadcn@latest add @shadcnblocks/button-button-destructive-7

Usage

import { ButtonButtonDestructive7 } from "@/components/button-button-destructive-7"
<ButtonButtonDestructive7 />