UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 803 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Zap = 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: "M20.98 11.802a.995.995 0 00-.738-.771l-6.86-1.716 2.537-5.921a.998.998 0 00-.317-1.192.996.996 0 00-1.234.024l-11 9a1 1 0 00.39 1.744l6.719 1.681-3.345 5.854A1.001 1.001 0 008 22a.995.995 0 00.6-.2l12-9a1 1 0 00.38-.998z", key: "k0" }))); }); Zap.displayName = 'Zap'; export var ZapDimensions = { height: 24, width: 24 };