@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 682 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 LedVariantOffIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,3C10.05,3 8.43,4.4 8.08,6.25L16.82,15H18V13H16V7C16,4.79 14.21,3 12,3M3.28,4L2,5.27L8,11.27V13H6V15H9V21H11V15H11.73L13,16.27V21H15V18.27L18.73,22L20,20.72L15,15.72L8,8.72L3.28,4Z' />
</Svg>
)
LedVariantOffIcon.displayName = 'LedVariantOffIcon'
LedVariantOffIcon.defaultProps = {
size: 24
}
export default LedVariantOffIcon