import { Button } from "@/components/ui/button";
import { PlusIcon } from "lucide-react";
export default function ButtonWithIcon() {
return (
<Button>
<PlusIcon /> Add New Create
</Button>
);
}
npx shadcn@latest add @bundui/button-with-iconimport { ButtonWithIcon } from "@/components/button-with-icon"<ButtonWithIcon />