Files
excalidraw/packages/excalidraw/components/ButtonSeparator.tsx
2024-07-25 18:55:55 +02:00

11 lines
190 B
TypeScript

export const ButtonSeparator = () => (
<div
style={{
width: 1,
height: "1rem",
backgroundColor: "var(--default-border-color)",
margin: "0 auto",
}}
/>
);