mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
16 lines
373 B
TypeScript
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>
|
|
);
|
|
};
|