@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 590 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 AxisXArrowIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M1.5,20.5L3,15.03L4.46,17.6L11,13.82V3H13V13.82L22.39,19.25L21.39,21L12,15.56L5.46,19.33L7,21.96L1.5,20.5Z' />
</Svg>
)
AxisXArrowIcon.displayName = 'AxisXArrowIcon'
AxisXArrowIcon.defaultProps = {
size: 24
}
export default AxisXArrowIcon