@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 722 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 MessageBulletedOffIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M1.27,1.73L0,3L2,5V22L6,18H15L20.73,23.73L22,22.46L1.27,1.73M8,14H6V12H8V14M6,11V9L8,11H6M20,2H4.08L10,7.92V6H18V8H10.08L11.08,9H18V11H13.08L20.07,18C21.14,17.95 22,17.08 22,16V4C22,2.9 21.1,2 20,2Z' />
</Svg>
)
MessageBulletedOffIcon.displayName = 'MessageBulletedOffIcon'
MessageBulletedOffIcon.defaultProps = {
size: 24
}
export default MessageBulletedOffIcon