@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 585 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 FormatHeader1Icon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M3,4H5V10H9V4H11V18H9V12H5V18H3V4M14,18V16H16V6.31L13.5,7.75V5.44L16,4H18V16H20V18H14Z' />
</Svg>
)
FormatHeader1Icon.displayName = 'FormatHeader1Icon'
FormatHeader1Icon.defaultProps = {
size: 24
}
export default FormatHeader1Icon