feat: add divider component

This commit is contained in:
fantasticit 2022-04-02 17:56:37 +08:00
parent 1ef72c936a
commit b778d9feaa
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
export const Divider = () => {
return (
<div
style={{
display: 'inline-block',
width: 1,
height: 24,
margin: '0 6px',
backgroundColor: 'var(--semi-color-border)',
}}
></div>
);
};