UNPKG

styled-icons

Version:

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

15 lines (14 loc) 947 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var EBike = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M15.5 6.937A6.997 6.997 0 0119 13v8h-4.17a3.001 3.001 0 01-5.66 0H5v-8a6.997 6.997 0 013.5-6.063A3.974 3.974 0 018.125 6H5V4h3.126a4.002 4.002 0 017.748 0H19v2h-3.126a4.02 4.02 0 01-.373.937zM12 14a1 1 0 00-1 1v5a1 1 0 002 0v-5a1 1 0 00-1-1zm0-7a2 2 0 100-4 2 2 0 000 4z", key: "k1" }))); }); EBike.displayName = 'EBike'; export var EBikeDimensions = { height: 24, width: 24 };