styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 760 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Pyramid = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __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" })));
});
Pyramid.displayName = 'Pyramid';
export var PyramidDimensions = { height: 24, width: 24 };