@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 614 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 WifiStrength4Icon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,3C7.79,3 3.7,4.41 0.38,7C4.41,12.06 7.89,16.37 12,21.5C16.08,16.42 20.24,11.24 23.65,7C20.32,4.41 16.22,3 12,3Z' />
</Svg>
)
WifiStrength4Icon.displayName = 'WifiStrength4Icon'
WifiStrength4Icon.defaultProps = {
size: 24
}
export default WifiStrength4Icon