import { IconButton } from '@/components/@extended'; import { useSx } from '@/hooks'; import { ButtonProps, IconButtonProps } from '@mui/material'; import { ForwardedRef, forwardRef } from 'react'; type IHeaderIconButtonProps = Omit; const HeaderIconButton = forwardRef(function HeaderIconButton( props: IHeaderIconButtonProps, ref: ForwardedRef | null ) { const sx = useSx( props, { color: 'text.primary' }, { defaults: true } ); return ( // @ts-ignore ); }); export { HeaderIconButton };