@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 737 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Cd = /*#__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 16 16"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M8 6a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm0 3a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0-7a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z"
}));
});
Cd.displayName = 'Cd';
export var CdDimensions = {
height: 16,
width: 16
};