@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
19 lines (18 loc) • 595 B
JavaScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
import { jsx } from '@emotion/react';
import { wrapperStyle } from './wrapper';
export var Frame = function Frame(_ref) {
var children = _ref.children,
testId = _ref.testId;
return (
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
jsx("span", {
css: wrapperStyle,
"data-testid": testId
}, children)
);
};