@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.24 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ShowYes",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12 6a9.64 9.64 0 0 0-8.928 6.005 9.64 9.64 0 0 0 17.857 0A9.64 9.64 0 0 0 12 6Zm10.938 5.659a11.64 11.64 0 0 0-21.876 0 1 1 0 0 0 0 .693 11.64 11.64 0 0 0 21.876 0 .992.992 0 0 0 0-.693ZM12 9.925a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z",
shapeRendering: "geometricPrecision"
}));
}
ShowYes.displayName = 'ShowYes';
export default createBaseComponent(ShowYes);