@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.04 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var CircleImage = /*#__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 28 28"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M14.25 10h3.73A7.5 7.5 0 1 0 10 17.98v-3.73C10 11.9 11.9 10 14.25 10Zm0 1A3.25 3.25 0 0 0 11 14.25v7.5c0 .63.18 1.21.48 1.7l4.75-4.74a2.5 2.5 0 0 1 3.54 0l4.75 4.75c.3-.5.48-1.08.48-1.71v-7.5c0-1.8-1.46-3.25-3.25-3.25h-7.5Zm9.2 13.52-4.74-4.75a1 1 0 0 0-1.42 0l-4.75 4.75c.5.3 1.08.48 1.71.48h7.5c.63 0 1.21-.18 1.7-.48ZM22 15.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
}));
});
CircleImage.displayName = 'CircleImage';
export var CircleImageDimensions = {
height: 28,
width: 28
};