import cn from 'clsx' import type { ReactNode, ReactElement } from 'react' interface ButtonProps { children?: ReactNode className?: string onClick?: () => void type?: 'button' | 'submit' | 'reset' disabled?: boolean title?: string tabIndex?: number } export const Button = ({ children, className, onClick, type = 'button', disabled, title, tabIndex }: ButtonProps): ReactElement => { return ( ) }