Files
feishin/src/renderer/components/separator/index.tsx
T
2024-04-14 21:58:25 -07:00

16 lines
373 B
TypeScript

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>
);
};