@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.11 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Gauge = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20zm3.88-15.33a.63.63 0 0 1 .96.76l-.13.25a354.7 354.7 0 0 1-3.02 5.67c-.12.2-.24.4-.32.5a1.88 1.88 0 0 1-2.94-2.33 37.2 37.2 0 0 1 1.1-1.05 154.39 154.39 0 0 1 4.14-3.62l.2-.18zM7.93 17.13c-.29.29-.76.29-1.06 0a7.25 7.25 0 0 1 6.8-12.19.75.75 0 1 1-.34 1.46 5.75 5.75 0 0 0-5.4 9.67c.3.29.3.76 0 1.06zm9.96-7.99c.39-.14.82.07.95.46a7.25 7.25 0 0 1-1.71 7.53.75.75 0 1 1-1.06-1.06 5.75 5.75 0 0 0 1.36-5.97.75.75 0 0 1 .46-.96z"
}));
});
Gauge.displayName = 'Gauge';
export var GaugeDimensions = {
height: 24,
width: 24
};