UNPKG

styled-icons

Version:

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

14 lines (13 loc) 708 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Bolt = 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.168 8H13l.806-4.835A1 1 0 0012.819 2H7.667a1 1 0 00-.986.835l-1.667 10A1 1 0 006 14h4v8l8.01-12.459A1 1 0 0017.168 8z", key: "k0" }))); }); Bolt.displayName = 'Bolt'; export var BoltDimensions = { height: 24, width: 24 };