@atlaskit/editor-plugin-floating-toolbar
Version:
Floating toolbar plugin for @atlaskit/editor-core
11 lines • 338 B
JavaScript
import React from 'react';
import Icon from '@atlaskit/icon/core/chevron-right';
import { Box } from '@atlaskit/primitives/compiled';
export function ExpandButton() {
return /*#__PURE__*/React.createElement(Box, {
paddingInline: "space.075"
}, /*#__PURE__*/React.createElement(Icon, {
label: 'Edit',
size: "small"
}));
}