UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.02 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var BatteryFull = 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: "M9 16a1 1 0 01-1-1v-4a1 1 0 112 0v4a1 1 0 01-1 1zm-3 0a1 1 0 01-1-1v-4a1 1 0 112 0v4a1 1 0 01-1 1zm9 0a1 1 0 01-1-1v-4a1 1 0 112 0v4a1 1 0 01-1 1zm-3 0a1 1 0 01-1-1v-4a1 1 0 112 0v4a1 1 0 01-1 1zm7-6c0-1.654-1.346-3-3-3H5c-1.654 0-3 1.346-3 3v6c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3a2 2 0 002-2v-2a2 2 0 00-2-2zm-2 6c0 .552-.449 1-1 1H5c-.551 0-1-.448-1-1v-6c0-.552.449-1 1-1h11c.551 0 1 .448 1 1v6z", key: "k0" }))); }); BatteryFull.displayName = 'BatteryFull'; export var BatteryFullDimensions = { height: 24, width: 24 };