use clearer separator character

This commit is contained in:
Kendall Garner
2024-04-14 21:58:25 -07:00
parent 19a88fea86
commit ec69cc22f9
8 changed files with 31 additions and 41 deletions
@@ -0,0 +1,15 @@
import { SEPARATOR_STRING } from '/@/renderer/api/utils';
import { Text } from '/@/renderer/components/text';
export const Separator = () => {
return (
<Text
$noSelect
$secondary
size="md"
style={{ display: 'inline-block', padding: '0px 3px' }}
>
{SEPARATOR_STRING}
</Text>
);
};