@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 637 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 ChartLineStackedIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M17.45,15.18L22,6.81V19L22,21H2V3H4V15.54L4,19H4.31L6,19H6.57L10.96,11.44L17.45,15.18M22,3L21.97,3.45L17,11L10,6L6,12V3H22Z' />
</Svg>
)
ChartLineStackedIcon.displayName = 'ChartLineStackedIcon'
ChartLineStackedIcon.defaultProps = {
size: 24
}
export default ChartLineStackedIcon