UNPKG

@atlaskit/editor-common

Version:

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

15 lines 354 B
/** @jsx jsx */ import { css, jsx } from '@emotion/react'; var wrapperStyle = css({ display: 'flex', 'span > svg': { verticalAlign: 'top' } }); export var IconWrapper = function IconWrapper(_ref) { var children = _ref.children; return jsx("span", { css: wrapperStyle, "data-testid": "media-inline-image-card-icon" }, children); };