We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8dc09 commit 1a9e292Copy full SHA for 1a9e292
1 file changed
demo/components/paper/toolbar/Toolbar.tsx
@@ -7,6 +7,8 @@ import { ToolName } from '../tools';
7
8
type Props = ComponentProps<'div'>;
9
10
+const Separator = () => <span className="mx-1 pointer-events-none">|</span>;
11
+
12
export const Toolbar = (props: Props) => {
13
return (
14
<div {...props}>
@@ -15,10 +17,10 @@ export const Toolbar = (props: Props) => {
15
17
<ToolButton tool={ToolName.Circle} />
16
18
<ToolButton tool={ToolName.Select} />
19
<ToolButton tool={ToolName.Delete} />
- <span className="mx-1">|</span>
20
+ <Separator />
21
<UndoButton />
22
<RedoButton />
23
24
<SaveButton />
25
</div>
26
);
0 commit comments