[feature] Add checkbox to toolbar (#1423)

This PR:
- adds the checkbox to the toolbar
- removes the embed button from the toolbar

### Change Type

- [x] `minor` — New Feature

### Release Notes

- Adds missing checkbox to toolbar.
This commit is contained in:
Steve Ruiz 2023-05-19 14:01:42 +01:00 committed by GitHub
parent 0375dbf8c0
commit 6ea0cb039f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,14 +63,14 @@ export function ToolbarSchemaProvider({ overrides, children }: ToolbarSchemaProv
toolbarItem(tools['octagon']), toolbarItem(tools['octagon']),
toolbarItem(tools['star']), toolbarItem(tools['star']),
toolbarItem(tools['oval']), toolbarItem(tools['oval']),
toolbarItem(tools['x-box']), toolbarItem(tools.line),
toolbarItem(tools['arrow-right']), toolbarItem(tools['arrow-right']),
toolbarItem(tools['arrow-left']), toolbarItem(tools['arrow-left']),
toolbarItem(tools['arrow-up']), toolbarItem(tools['arrow-up']),
toolbarItem(tools['arrow-down']), toolbarItem(tools['arrow-down']),
toolbarItem(tools.line), toolbarItem(tools['x-box']),
toolbarItem(tools['check-box']),
toolbarItem(tools.frame), toolbarItem(tools.frame),
toolbarItem(tools.embed),
toolbarItem(tools.laser), toolbarItem(tools.laser),
] ]