@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 831 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 VibrateOffIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M8.2,5L6.55,3.35C6.81,3.12 7.15,3 7.5,3H16.5C17.33,3 18,3.67 18,4.5V14.8L16,12.8V5H8.2M0,15H2V9H0V15M21,17V7H19V15.8L20.2,17H21M3,17H5V7H3V17M18,17.35L22.11,21.46L20.84,22.73L18,19.85C17.83,20.54 17.21,21 16.5,21H7.5C6.67,21 6,20.33 6,19.5V7.89L1.11,3L2.39,1.73L6.09,5.44L8,7.34L16,15.34L18,17.34V17.35M16,17.89L8,9.89V19H16V17.89M22,9V15H24V9H22Z' />
</Svg>
)
VibrateOffIcon.displayName = 'VibrateOffIcon'
VibrateOffIcon.defaultProps = {
size: 24
}
export default VibrateOffIcon