@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 571 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 AxisZArrowIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,2L16,6H13V13.82L22.39,19.25L21.39,21L12,15.56L2.61,21L1.61,19.25L11,13.82V6H8L12,2Z' />
</Svg>
)
AxisZArrowIcon.displayName = 'AxisZArrowIcon'
AxisZArrowIcon.defaultProps = {
size: 24
}
export default AxisZArrowIcon