@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 606 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 ArrowCollapseUpIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M4.08,11.92L12,4L19.92,11.92L18.5,13.33L13,7.83V22H11V7.83L5.5,13.33L4.08,11.92M12,4H22V2H2V4H12Z' />
</Svg>
)
ArrowCollapseUpIcon.displayName = 'ArrowCollapseUpIcon'
ArrowCollapseUpIcon.defaultProps = {
size: 24
}
export default ArrowCollapseUpIcon