@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 575 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 ChartTimelineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M2,2H4V20H22V22H2V2M7,10H17V13H7V10M11,15H21V18H11V15M6,4H22V8H20V6H8V8H6V4Z' />
</Svg>
)
ChartTimelineIcon.displayName = 'ChartTimelineIcon'
ChartTimelineIcon.defaultProps = {
size: 24
}
export default ChartTimelineIcon