import { ButtonHTMLAttributes, DetailedHTMLProps, forwardRef } from "react"; export namespace Button { export type Props = Omit, HTMLButtonElement>, "className">; } export const Button = forwardRef(function Button({ children, ...props }, ref) { return ( ); });