styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.08 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.FlashOutline = 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: "M14.5 4h.005M14.5 4L12 10l5 2.898L9.5 20l2.5-6-5-2.9L14.5 4m0-2a2.024 2.024 0 00-1.379.551L5.624 9.646a1.998 1.998 0 00-.61 1.686c.072.626.437 1.182.982 1.498l3.482 2.021-1.826 4.381a2.003 2.003 0 001.847 2.77c.498 0 .993-.186 1.375-.548l7.5-7.103a1.995 1.995 0 00.61-1.685 1.999 1.999 0 00-.982-1.498L14.52 9.15l1.789-4.293A2 2 0 0014.5 2z", key: "k0" })));
});
exports.FlashOutline.displayName = 'FlashOutline';
exports.FlashOutlineDimensions = { height: 24, width: 24 };
;