@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.3 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 ShowYes({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ShowYes",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "m15.946 8.333.003-.008a1.008 1.008 0 0 0-.003-.652 8.4 8.4 0 0 0-15.89 0 .98.98 0 0 0-.054.273L0 7.961a.982.982 0 0 0 .055.372 8.45 8.45 0 0 0 7.95 5.67 8.45 8.45 0 0 0 7.94-5.67ZM4.28 10.807a6.4 6.4 0 0 1-2.21-2.804 6.4 6.4 0 0 1 11.863 0 6.4 6.4 0 0 1-9.653 2.804Zm2.609-1.141A2 2 0 1 0 9.11 6.34a2 2 0 0 0-2.22 3.326Z",
shapeRendering: "geometricPrecision"
}));
}
ShowYes.displayName = 'ShowYes';
export default createBaseComponent(ShowYes);