Files
cinny/src/app/components/sidebar/SidebarStackSeparator.tsx
T

14 lines
262 B
TypeScript
Raw Normal View History

2023-06-12 21:15:23 +10:00
import React from 'react';
import { Line, toRem } from 'folds';
export function SidebarStackSeparator() {
return (
<Line
role="separator"
style={{ width: toRem(24), margin: '0 auto' }}
variant="Background"
size="300"
/>
);
}