diff options
Diffstat (limited to 'src/components/ui/button.tsx')
| -rw-r--r-- | src/components/ui/button.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
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 ( + <button + {...props} + className={cn("rounded-sm border px-2", "cursor-pointer", className)} + /> + ); +}; |
