import { forwardRef } from 'react' interface ButtonProps extends React.ComponentPropsWithRef<'button'> {} export const Button = forwardRef( (props, ref) => { const { children, ...rest } = props return ( <> ) } )