@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 TrendingDownIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M16,18L18.29,15.71L13.41,10.83L9.41,14.83L2,7.41L3.41,6L9.41,12L13.41,8L19.71,14.29L22,12V18H16Z' />
</Svg>
)
TrendingDownIcon.displayName = 'TrendingDownIcon'
TrendingDownIcon.defaultProps = {
size: 24
}
export default TrendingDownIcon