@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 721 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 ChartScatterPlotHexbinIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M2,2H4V20H22V22H2V2M14,14.5L12,18H7.94L5.92,14.5L7.94,11H12L14,14.5M14.08,6.5L12.06,10H8L6,6.5L8,3H12.06L14.08,6.5M21.25,10.5L19.23,14H15.19L13.17,10.5L15.19,7H19.23L21.25,10.5Z' />
</Svg>
)
ChartScatterPlotHexbinIcon.displayName = 'ChartScatterPlotHexbinIcon'
ChartScatterPlotHexbinIcon.defaultProps = {
size: 24
}
export default ChartScatterPlotHexbinIcon