@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 923 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 BellOffOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M22.11,21.46L2.39,1.73L1.11,3L5.83,7.72C5.29,8.73 5,9.86 5,11V17L3,19V20H18.11L20.84,22.73L22.11,21.46M7,18V11C7,10.39 7.11,9.79 7.34,9.23L16.11,18H7M10,21H14C14,22.1 13.1,23 12,23C10.9,23 10,22.1 10,21M8.29,5.09C8.82,4.75 9.4,4.5 10,4.29C10,4.19 10,4.1 10,4C10,2.9 10.9,2 12,2C13.1,2 14,2.9 14,4C14,4.1 14,4.19 14,4.29C16.97,5.17 19,7.9 19,11V15.8L17,13.8V11C17,8.24 14.76,6 12,6C11.22,6 10.45,6.2 9.76,6.56L8.29,5.09Z' />
</Svg>
)
BellOffOutlineIcon.displayName = 'BellOffOutlineIcon'
BellOffOutlineIcon.defaultProps = {
size: 24
}
export default BellOffOutlineIcon