@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.51 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Casual",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M18.648 3.12a1.554 1.554 0 0 0-.498-.114L16 3c-.551-.002-.984.455-1.166.975a3.01 3.01 0 0 1-2.832 2.022 3.002 3.002 0 0 1-2.835-2.015c-.182-.523-.615-.984-1.168-.982l-2.149.006c-.168.01-.337.047-.498.114L.62 5.07A1 1 0 0 0 .05 6.304l1.97 6.004a1 1 0 0 0 .95.688h2.026v7a1 1 0 0 0 1 1h12.008a1 1 0 0 0 1-1v-7h2.026a1 1 0 0 0 .95-.688l1.97-6.004a1 1 0 0 0-.57-1.236l-4.732-1.95Zm1.657 7.877 1.455-4.432L18 5l-1.415.002a5.002 5.002 0 0 1-4.583 2.995h-.004a5.002 5.002 0 0 1-4.583-2.995L6 5 2.24 6.565l1.455 4.432h3.301v8h10.008v-8h3.301Z",
shapeRendering: "geometricPrecision"
}));
}
Casual.displayName = 'Casual';
export default createBaseComponent(Casual);