import { memo } from 'react'; import { IconButton, type IconButtonProps } from '../IconButton'; export type Props = Omit & {}; const AppbarActions = memo(({ size = 24, ...rest }: Props) => { return ; }); AppbarActions.displayName = 'Appbar_Actions'; export default AppbarActions;