aboutsummaryrefslogtreecommitdiffstats
path: root/packages/excalidraw/components/ButtonSeparator.tsx
blob: e4dec32d64924c5ccb75569a0e5a3d2e32227e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const ButtonSeparator = () => (
  <div
    style={{
      width: 1,
      height: "1rem",
      backgroundColor: "var(--default-border-color)",
      margin: "0 auto",
    }}
  />
);