@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 594 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 ArrowExpandDownIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M22,4V2H2V4H11V18.17L5.5,12.67L4.08,14.08L12,22L19.92,14.08L18.5,12.67L13,18.17V4H22Z' />
</Svg>
)
ArrowExpandDownIcon.displayName = 'ArrowExpandDownIcon'
ArrowExpandDownIcon.defaultProps = {
size: 24
}
export default ArrowExpandDownIcon