From 94c9c0e87db6d878d1488ebeff60d728a89fc12d Mon Sep 17 00:00:00 2001 From: "mihailo.vojinovic" Date: Wed, 4 Feb 2026 17:45:38 +0100 Subject: Add invoice generator component --- src/components/ui/button.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/ui/button.tsx (limited to 'src/components/ui/button.tsx') diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx new file mode 100644 index 0000000..32b9aac --- /dev/null +++ b/src/components/ui/button.tsx @@ -0,0 +1,13 @@ +import { cn } from "@/utils/cn"; + +export const Button = ({ + className, + ...props +}: React.ComponentPropsWithRef<"button">) => { + return ( +