styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 809 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Flash = 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: "M17.502 12.033l-4.241-2.458 2.138-5.131A1.003 1.003 0 0014.505 3a1.004 1.004 0 00-.622.214l-.07.06-7.5 7.1a1.002 1.002 0 00.185 1.592l4.242 2.46-2.163 5.19a.999.999 0 001.611 1.11l7.5-7.102a1.002 1.002 0 00-.186-1.591z", key: "k0" })));
});
Flash.displayName = 'Flash';
export var FlashDimensions = { height: 24, width: 24 };