mirror of https://github.com/fantasticit/think.git
14 lines
244 B
TypeScript
14 lines
244 B
TypeScript
|
export const Divider = () => {
|
||
|
return (
|
||
|
<div
|
||
|
style={{
|
||
|
display: 'inline-block',
|
||
|
width: 1,
|
||
|
height: 24,
|
||
|
margin: '0 6px',
|
||
|
backgroundColor: 'var(--semi-color-border)',
|
||
|
}}
|
||
|
></div>
|
||
|
);
|
||
|
};
|