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