styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
18 lines (17 loc) • 1.13 kB
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.Layer = 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: "M21.484 7.125l-9.022-5a1.003 1.003 0 00-.968 0l-8.978 4.96a1 1 0 00-.003 1.748l9.022 5.04a.995.995 0 00.973.001l8.978-5a1 1 0 00-.002-1.749z", key: "k0" }),
React.createElement("path", { d: "M12 15.856l-8.515-4.73-.971 1.748 9 5a1 1 0 00.971 0l9-5-.971-1.748L12 15.856z", key: "k1" }),
React.createElement("path", { d: "M12 19.856l-8.515-4.73-.971 1.748 9 5a1 1 0 00.971 0l9-5-.971-1.748L12 19.856z", key: "k2" })));
});
exports.Layer.displayName = 'Layer';
exports.LayerDimensions = { height: 24, width: 24 };
;