import React from 'react'; import { HStack, IStackProps } from '../../primitives'; import { useThemeProps } from '../../../hooks'; const AppBarLeft = (props: IStackProps) => { const { color } = useThemeProps('AppBar', props); return ; }; export default React.memo(AppBarLeft);