@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 627 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 ShareOffIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M20.8,22.7L15.6,17.5L14,19V15.9L13.1,14.9C8.6,15.2 5.4,16.8 3,20.1C3.58,16.31 5.72,12.94 8.9,10.8L1.1,3L2.4,1.7L22.1,21.5M18.1,14.9L21,12L14,5V9L12.5,9.3' />
</Svg>
)
ShareOffIcon.displayName = 'ShareOffIcon'
ShareOffIcon.defaultProps = {
size: 24
}
export default ShareOffIcon