@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 612 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 CursorMoveIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M13,6V11H18V7.75L22.25,12L18,16.25V13H13V18H16.25L12,22.25L7.75,18H11V13H6V16.25L1.75,12L6,7.75V11H11V6H7.75L12,1.75L16.25,6H13Z' />
</Svg>
)
CursorMoveIcon.displayName = 'CursorMoveIcon'
CursorMoveIcon.defaultProps = {
size: 24
}
export default CursorMoveIcon