import React from 'react'; import { Box, IBoxProps } from '../../primitives'; import { useThemeProps } from '../../../hooks'; export type IAppBarContentProps = IBoxProps; const AppBarContent = (props: IAppBarContentProps) => { const { color } = useThemeProps('AppBar', props); return ( ); }; export default React.memo(AppBarContent);