Button/button-link-

PreviousNext

A button/button-link- example

Docs
shadcnblocksblock

Preview

Loading preview…
code/example/button/button-link-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="link">
    Button
    <Kbd>⌘K</Kbd>
  </Button>
);

export default Example;

Installation

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

Usage

import { ButtonButtonLink7 } from "@/components/button-button-link-7"
<ButtonButtonLink7 />