styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 883 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Pyramid = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M11.445 21.832a1 1 0 001.11 0l9-6A.998.998 0 0021.8 14.4l-9-12c-.377-.504-1.223-.504-1.6 0l-9 12a1 1 0 00.245 1.432l9 6zm8.12-7.078L12 19.798V4.667l7.565 10.087z", key: "k0" })));
});
exports.Pyramid.displayName = 'Pyramid';
exports.PyramidDimensions = { height: 24, width: 24 };
;