UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

12 lines (11 loc) 287 B
/** @jsx jsx */ import { jsx } from '@emotion/react'; import { wrapperStyle } from './wrapper'; export var Frame = function Frame(_ref) { var children = _ref.children, testId = _ref.testId; return jsx("span", { css: wrapperStyle, "data-testid": testId }, children); };