@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 623 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 VolumeVariantOffIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5.64,3.64L21.36,19.36L19.95,20.78L16,16.83V20L11,15H7V9H8.17L4.22,5.05L5.64,3.64M16,4V11.17L12.41,7.58L16,4Z' />
</Svg>
)
VolumeVariantOffIcon.displayName = 'VolumeVariantOffIcon'
VolumeVariantOffIcon.defaultProps = {
size: 24
}
export default VolumeVariantOffIcon