@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 640 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 FormatListTriangleIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5,15.5L7.5,20H2.5L5,15.5M9,19H21V17H9V19M5,9.5L7.5,14H2.5L5,9.5M9,13H21V11H9V13M5,3.5L7.5,8H2.5L5,3.5M9,7H21V5H9V7Z' />
</Svg>
)
FormatListTriangleIcon.displayName = 'FormatListTriangleIcon'
FormatListTriangleIcon.defaultProps = {
size: 24
}
export default FormatListTriangleIcon