@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 689 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 MoveResizeVariantIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M1.88,0.46L0.46,1.88L5.59,7H2V9H9V2H7V5.59M11,7V9H21V15H23V9C23,7.9 22.1,7 21,7M7,11V21C7,22.1 7.9,23 9,23H15V21H9V11M15.88,14.46L14.46,15.88L19.6,21H17V23H23V17H21V19.59' />
</Svg>
)
MoveResizeVariantIcon.displayName = 'MoveResizeVariantIcon'
MoveResizeVariantIcon.defaultProps = {
size: 24
}
export default MoveResizeVariantIcon