import { Icon, Icons } from "@/components/Icon"; import { ReactNode } from "react"; interface Props { icon?: Icons; onClick?: () => void; children?: ReactNode; } export function Button(props: Props) { return ( ); }