import clsx from 'clsx'; import {forwardRef, ReactNode} from 'react'; import {KeyboardArrowRightIcon} from '../../icons/material/KeyboardArrowRight'; import {ButtonBase, ButtonBaseProps} from '../../ui/buttons/button-base'; interface Props extends ButtonBaseProps { startIcon?: ReactNode; description?: ReactNode; } export const AppearanceButton = forwardRef( ({startIcon, children, className, description, ...other}, ref) => { return ( {startIcon} {children} {description && ( {description} )} ); }, );