@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 596 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 FormatOverlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5,5H19V3H5V5M9.62,16L12,9.67L14.37,16M11,7L5.5,21H7.75L8.87,18H15.12L16.25,21H18.5L13,7H11Z' />
</Svg>
)
FormatOverlineIcon.displayName = 'FormatOverlineIcon'
FormatOverlineIcon.defaultProps = {
size: 24
}
export default FormatOverlineIcon