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