UNPKG

@atlaskit/editor-common

Version:

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

40 lines 1.42 kB
// TODO: https://product-fabric.atlassian.net/browse/DSP-4138 /* eslint-disable @atlaskit/design-system/ensure-design-token-usage */ import React from 'react'; import { useIconThemed } from '../use-icon-themed'; export default function IconQuote() { var _useIconThemed = useIconThemed(), iconThemed = _useIconThemed.iconThemed; return /*#__PURE__*/React.createElement("svg", { focusable: "false", "aria-hidden": true, width: 40, height: 40, viewBox: "0 0 40 40" }, /*#__PURE__*/React.createElement("g", { fill: "none", fillRule: "evenodd" }, /*#__PURE__*/React.createElement("path", { fill: iconThemed({ light: '#FFF', dark: '#161A1D' }), d: "M0 0h40v40H0z" }), /*#__PURE__*/React.createElement("rect", { fill: iconThemed({ light: '#C1C7D0', dark: '#454F59' }), x: 6, y: 8, width: 2, height: 24, rx: 1 }), /*#__PURE__*/React.createElement("path", { d: "M27.284 12c-1.888 0-3.422 1.577-3.422 3.522 0 1.944 1.534 3.521 3.422 3.521 3.245 0 1.365 6.118-2.727 6.755a.818.818 0 00-.695.806c0 .5.447.896.942.82C32.242 26.296 34.886 12 27.284 12m-9.86 0C15.533 12 14 13.577 14 15.522c0 1.944 1.533 3.521 3.424 3.521 3.243 0 1.363 6.118-2.73 6.755a.818.818 0 00-.694.806c0 .5.447.896.941.82C22.381 26.296 25.026 12 17.424 12", fill: iconThemed({ light: '#6C798F', dark: '#5A6977' }) }))); }