@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 786 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Cone = /*#__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 15c-2.23 0-6-.42-6-2l.01-.12.05-.2a.5.5 0 0 1 .04-.1l5.45-11.3a.52.52 0 0 1 .9 0l5.45 11.3a.5.5 0 0 1 .04.1l.05.2.01.12c0 1.58-3.77 2-6 2Z"
}));
});
Cone.displayName = 'Cone';
export var ConeDimensions = {
height: 16,
width: 16
};