@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.45 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootCanva({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Canva",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fill: "white",
d: "M11.454 9.641c-.066 0-.124.056-.185.178-.683 1.384-1.862 2.364-3.227 2.364-1.577 0-2.555-1.425-2.555-3.393 0-3.333 1.858-5.26 3.489-5.26.762 0 1.228.479 1.228 1.241 0 .905-.514 1.384-.514 1.703 0 .143.089.23.265.23.71 0 1.543-.816 1.543-1.968 0-1.117-.972-1.938-2.603-1.938-2.696 0-5.092 2.5-5.092 5.957 0 2.677 1.528 4.446 3.887 4.446 2.503 0 3.95-2.49 3.95-3.299 0-.179-.09-.26-.186-.26",
shapeRendering: "geometricPrecision"
}));
}
RootCanva.displayName = 'Canva';
const Canva = createBaseComponent(RootCanva);
export { Canva as default };