@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ClockPause = /*#__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: "M15.75 13.5h-4l-.14-.01a6.47 6.47 0 0 1-.4 8.48L12 22a10 10 0 1 0-9.97-9.22 6.48 6.48 0 0 1 8.97.03.8.8 0 0 1 0-.06v-6a.75.75 0 0 1 1.5 0V12h3.25a.75.75 0 0 1 0 1.5Zm-3.75 4a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.5-3a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm4 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z"
}));
});
ClockPause.displayName = 'ClockPause';
export var ClockPauseDimensions = {
height: 24,
width: 24
};