Button

PreviousNext

Displays a button or a component that looks like a button.

Docs
bunduicomponent

Preview

Loading preview…
examples/components/button/with-icon/page.tsx
import { Button } from "@/components/ui/button";
import { PlusIcon } from "lucide-react";

export default function ButtonWithIcon() {
  return (
    <Button>
      <PlusIcon /> Add New Create
    </Button>
  );
}

Installation

npx shadcn@latest add @bundui/button-with-icon

Usage

import { ButtonWithIcon } from "@/components/button-with-icon"
<ButtonWithIcon />