UNPKG

@atlaskit/editor-common

Version:

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

29 lines 861 B
import _extends from "@babel/runtime/helpers/extends"; /* eslint-disable @atlaskit/design-system/no-custom-icons */ import React from 'react'; import Icon from '@atlaskit/icon'; const IconUrlGlyph = props => { return /*#__PURE__*/React.createElement("svg", _extends({ width: "32", height: "32", viewBox: "0 0 32 32", fill: "none", xmlns: "http://www.w3.org/2000/svg" // Ignored via go/ees005 // eslint-disable-next-line react/jsx-props-no-spreading }, props), /*#__PURE__*/React.createElement("rect", { x: "6", y: "15", width: "20", height: "2", rx: "1", fill: "currentColor" })); }; export const IconUrl = props => { // Ignored via go/ees005 // eslint-disable-next-line react/jsx-props-no-spreading return /*#__PURE__*/React.createElement(Icon, _extends({ glyph: IconUrlGlyph }, props)); };