Files
feishin/src/renderer/components/separator/index.tsx
T
2025-05-26 17:20:02 -07:00

16 lines
371 B
TypeScript

import { Text } from '/@/renderer/components/text';
import { SEPARATOR_STRING } from '/@/shared/api/utils';
export const Separator = () => {
return (
<Text
$noSelect
$secondary
size="md"
style={{ display: 'inline-block', padding: '0px 3px' }}
>
{SEPARATOR_STRING}
</Text>
);
};