@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.12 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 32 32"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0Zm15.56-7.85a1 1 0 1 0 .39-1.96 10.06 10.06 0 0 0-7.1 1.24A10 10 0 0 0 7.7 21.59a1 1 0 1 0 1.66-1.12 8 8 0 0 1 8.2-12.32Zm5.68 2.4a1 1 0 0 0-.35 1.37 8 8 0 0 1-.24 8.54 1 1 0 1 0 1.66 1.11 10 10 0 0 0 .3-10.66 1 1 0 0 0-1.37-.36Zm-2.25-2.5-1.05.85a336.39 336.39 0 0 0-5.78 4.72c-.2.17-.38.35-.56.54a2.46 2.46 0 0 0 3.75 3.2c.16-.2.3-.42.44-.64.17-.28.4-.64.63-1.04a204.85 204.85 0 0 0 3.13-5.4l.49-.86.18-.32a.82.82 0 0 0-1.23-1.05Z"
}));
});
Gauge.displayName = 'Gauge';
export var GaugeDimensions = {
height: 32,
width: 32
};