@semcore/icon
Version:
Semrush Icon Component
31 lines • 2.42 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 MoneyCoins({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "MoneyCoins",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5 0C3.738 0 2.548.318 1.641.884.75 1.442 0 2.34 0 3.5V10c0 1.002.758 1.772 1.647 2.247.661.352 1.473.591 2.353.695v-1.755a4.303 4.303 0 0 1-1.304-.417C2.137 10.473 2 10.176 2 10v-.582c.589.26 1.27.438 2 .524v-.505a4.61 4.61 0 0 1 .18-1.224c-.597-.08-1.106-.24-1.484-.443C2.137 7.473 2 7.176 2 7v-.68c.782.402 1.728.64 2.731.675.502-.793 1.194-1.396 1.85-1.807C7.583 4.562 8.771 4.185 10 4.053V3.5c0-1.16-.749-2.058-1.641-2.616C7.452.318 6.262 0 5 0ZM2 3.5c0-.221.146-.573.701-.92C3.243 2.242 4.053 2 5 2c.947 0 1.757.242 2.299.58.555.347.701.699.701.92 0 .221-.146.573-.701.92C6.757 4.758 5.947 5 5 5c-.947 0-1.757-.242-2.299-.58C2.146 4.073 2 3.72 2 3.5Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11 6c-1.262 0-2.452.318-3.359.884C6.75 7.442 6 8.34 6 9.5V13c0 1.002.758 1.772 1.647 2.247C8.553 15.73 9.741 16 11 16c1.26 0 2.447-.27 3.353-.753C15.243 14.772 16 14.002 16 13V9.5c0-1.16-.749-2.058-1.641-2.616C13.452 6.318 12.262 6 11 6Zm-2.304 7.77C8.137 13.473 8 13.176 8 13v-.68c.851.438 1.898.68 3 .68s2.149-.242 3-.68V13c0 .176-.137.473-.695.77-.543.29-1.355.497-2.305.497-.95 0-1.762-.207-2.304-.497ZM8 9.5c0-.221.146-.573.701-.92C9.243 8.242 10.053 8 11 8c.947 0 1.757.242 2.299.58.555.347.701.699.701.92 0 .221-.146.573-.701.92-.542.338-1.352.58-2.299.58-.947 0-1.757-.242-2.299-.58C8.146 10.073 8 9.72 8 9.5Z",
shapeRendering: "geometricPrecision"
}));
}
MoneyCoins.displayName = 'MoneyCoins';
export default createBaseComponent(MoneyCoins);