@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 578 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 TrendingUpIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M16,6L18.29,8.29L13.41,13.17L9.41,9.17L2,16.59L3.41,18L9.41,12L13.41,16L19.71,9.71L22,12V6H16Z' />
</Svg>
)
TrendingUpIcon.displayName = 'TrendingUpIcon'
TrendingUpIcon.defaultProps = {
size: 24
}
export default TrendingUpIcon