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