@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 628 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 ResizeBottomRightIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M22,22H20V20H22V22M22,18H20V16H22V18M18,22H16V20H18V22M18,18H16V16H18V18M14,22H12V20H14V22M22,14H20V12H22V14Z' />
</Svg>
)
ResizeBottomRightIcon.displayName = 'ResizeBottomRightIcon'
ResizeBottomRightIcon.defaultProps = {
size: 24
}
export default ResizeBottomRightIcon