@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 626 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 CropFreeIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M19,3H15V5H19V9H21V5C21,3.89 20.1,3 19,3M19,19H15V21H19C20.1,21 21,20.1 21,19V15H19M5,15H3V19C3,20.1 3.9,21 5,21H9V19H5M3,5V9H5V5H9V3H5C3.9,3 3,3.9 3,5Z' />
</Svg>
)
CropFreeIcon.displayName = 'CropFreeIcon'
CropFreeIcon.defaultProps = {
size: 24
}
export default CropFreeIcon