UNPKG

@atlaskit/editor-common

Version:

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

11 lines (10 loc) 220 B
/** @jsx jsx */ import { jsx } from '@emotion/react'; import { wrapperStyle } from './wrapper'; export const Frame = ({ children, testId }) => jsx("span", { css: wrapperStyle, "data-testid": testId }, children);