@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 635 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 BatteryMinusIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M16.67,4C17.4,4 18,4.6 18,5.33V20.67C18,21.4 17.4,22 16.67,22H7.33C6.6,22 6,21.4 6,20.67V5.33C6,4.6 6.6,4 7.33,4H9V2H15V4H16.67M8,12V14H16V12' />
</Svg>
)
BatteryMinusIcon.displayName = 'BatteryMinusIcon'
BatteryMinusIcon.defaultProps = {
size: 24
}
export default BatteryMinusIcon