import { useTheme } from '../../../theme'; const useMonoColor = () => { const theme = useTheme(); const fill = theme.colors.onDefaultGlobalSurface; const stroke = 'transparent'; return { fill, stroke, }; }; export default useMonoColor;