import * as React from "react" import { Plus } from "lucide-react" import { cn } from "@/lib/utils" const Button = ({ children, className, onClick, type, }: { children: React.ReactNode className?: string onClick?: () => void type?: "button" | "submit" | "reset" }) => { return ( ) } export default Button