@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.45 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Casual({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Casual",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.88 2.686a2 2 0 0 1-3.759.003c-.133-.364-.436-.687-.823-.686l-1.395.004a1.035 1.035 0 0 0-.332.076L.557 3.322a.875.875 0 0 0-.506 1.113l1.307 3.82c.148.433.588.745 1.065.745H3v4.001a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V9h.578c.476 0 .916-.312 1.064-.744l1.306-3.818a.875.875 0 0 0-.508-1.115L12.388 2.08s-.185-.077-.388-.079h-1.301c-.386 0-.687.322-.82.685ZM2.28 4.776 4.164 4h.371a3.998 3.998 0 0 0 3.465 2c1.48 0 2.773-.804 3.465-2h.337l1.915.78L13 7h-2v5.001H5V7H3l-.719-2.225Z",
shapeRendering: "geometricPrecision"
}));
}
Casual.displayName = 'Casual';
export default createBaseComponent(Casual);