@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 628 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 FormatListChecksIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M3,5H9V11H3V5M5,7V9H7V7H5M11,7H21V9H11V7M11,15H21V17H11V15M5,20L1.5,16.5L2.91,15.09L5,17.17L9.59,12.59L11,14L5,20Z' />
</Svg>
)
FormatListChecksIcon.displayName = 'FormatListChecksIcon'
FormatListChecksIcon.defaultProps = {
size: 24
}
export default FormatListChecksIcon