mirror of https://github.com/fantasticit/think.git
feat: add divider component
This commit is contained in:
parent
1ef72c936a
commit
b778d9feaa
|
@ -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>
|
||||
);
|
||||
};
|
Loading…
Reference in New Issue