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; } export const AppearanceButton = forwardRef( ({startIcon, children, className, ...other}, ref) => { return ( {startIcon}
{children}
); } );