@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 948 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 LightbulbOffOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,2C9.76,2 7.78,3.05 6.5,4.68L7.93,6.11C8.84,4.84 10.32,4 12,4C14.76,4 17,6.24 17,9C17,10.68 16.16,12.16 14.89,13.06L16.31,14.5C17.94,13.21 19,11.24 19,9C19,5.13 15.87,2 12,2M3.28,4L2,5.27L5.04,8.3C5,8.53 5,8.76 5,9C5,11.38 6.19,13.47 8,14.74V17C8,17.55 8.45,18 9,18H14.73L18.73,22L20,20.72L3.28,4M7.23,10.5L12.73,16H10V13.58C8.68,13 7.66,11.88 7.23,10.5M9,20V21C9,21.55 9.45,22 10,22H14C14.55,22 15,21.55 15,21V20H9Z' />
</Svg>
)
LightbulbOffOutlineIcon.displayName = 'LightbulbOffOutlineIcon'
LightbulbOffOutlineIcon.defaultProps = {
size: 24
}
export default LightbulbOffOutlineIcon