@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 622 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 ArrowCollapseDownIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M19.92,12.08L12,20L4.08,12.08L5.5,10.67L11,16.17V2H13V16.17L18.5,10.66L19.92,12.08M12,20H2V22H22V20H12Z' />
</Svg>
)
ArrowCollapseDownIcon.displayName = 'ArrowCollapseDownIcon'
ArrowCollapseDownIcon.defaultProps = {
size: 24
}
export default ArrowCollapseDownIcon