@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 635 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 GridLargeIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M4,2H20C21.1,2 22,2.9 22,4V20C22,21.1 21.1,22 20,22H4C2.92,22 2,21.1 2,20V4C2,2.9 2.9,2 4,2M4,4V11H11V4H4M4,20H11V13H4V20M20,20V13H13V20H20M20,4H13V11H20V4Z' />
</Svg>
)
GridLargeIcon.displayName = 'GridLargeIcon'
GridLargeIcon.defaultProps = {
size: 24
}
export default GridLargeIcon