@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 732 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import { space, color } from 'styled-system'
const Svg = styled('svg')({ flex: 'none' }, space, color)
const BatteryCharging20Icon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M23.05,11H20.05V4L15.05,14H18.05V22M12.05,17H4.05V6H12.05M12.72,4H11.05V2H5.05V4H3.38C2.65,4 2.05,4.6 2.05,5.33V20.67C2.05,21.4 2.65,22 3.38,22H12.72C13.45,22 14.05,21.4 14.05,20.67V5.33C14.05,4.6 13.45,4 12.72,4Z' />
</Svg>
)
BatteryCharging20Icon.displayName = 'BatteryCharging20Icon'
BatteryCharging20Icon.defaultProps = {
size: 24
}
export default BatteryCharging20Icon