ultra-icon
Version:
54 lines (51 loc) • 2.65 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import withWrapper from '../utils/withWrapper.js';
var __defProp = Object.defineProperty;
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __spreadValues = (a, b) => {
for (var prop in b || (b = {}))
if (__hasOwnProp.call(b, prop))
__defNormalProp(a, prop, b[prop]);
if (__getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(b)) {
if (__propIsEnum.call(b, prop))
__defNormalProp(a, prop, b[prop]);
}
return a;
};
var __objRest = (source, exclude) => {
var target = {};
for (var prop in source)
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
target[prop] = source[prop];
if (source != null && __getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(source)) {
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
target[prop] = source[prop];
}
return target;
};
const SteamFillIconComponent = (p) => {
const _a = p, { size } = _a, props = __objRest(_a, ["size"]);
return /* @__PURE__ */ React.createElement("svg", __spreadValues({
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
fill: "currentColor"
}, props), /* @__PURE__ */ React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /* @__PURE__ */ React.createElement("path", {
d: "M12.004 2c-5.25 0-9.556 4.05-9.964 9.197l5.36 2.216a2.815 2.815 0 0 1 1.593-.492c.053 0 .104.003.157.005l2.384-3.452v-.049c0-2.08 1.69-3.77 3.77-3.77 2.079 0 3.77 1.692 3.77 3.772s-1.692 3.771-3.77 3.771h-.087l-3.397 2.426c0 .043.003.088.003.133a2.826 2.826 0 0 1-2.825 2.83 2.843 2.843 0 0 1-2.775-2.273l-3.838-1.589C3.573 18.922 7.427 22 12.005 22c5.522 0 9.998-4.477 9.998-10 0-5.522-4.477-10-9.999-10zM7.078 16.667c.218.452.595.832 1.094 1.041a2.126 2.126 0 0 0 1.634-3.922 2.119 2.119 0 0 0-1.565-.025l1.269.525a1.563 1.563 0 0 1 .84 2.046 1.563 1.563 0 0 1-2.044.843l-1.228-.508zm10.74-7.245a2.516 2.516 0 0 0-2.513-2.512 2.514 2.514 0 0 0 0 5.025 2.513 2.513 0 0 0 2.512-2.513zM15.31 7.53a1.889 1.889 0 1 1-.002 3.774 1.889 1.889 0 0 1 .002-3.774z"
}));
};
SteamFillIconComponent.propTypes = {
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
const SteamFillIcon = withWrapper(SteamFillIconComponent);
export { SteamFillIcon as default };