@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 647 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 FormatAnnotationPlusIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M8.5,7H10.5L16,21H13.6L12.5,18H6.3L5.2,21H3L8.5,7M7.1,16H11.9L9.5,9.7L7.1,16M22,5V7H19V10H17V7H14V5H17V2H19V5H22Z' />
</Svg>
)
FormatAnnotationPlusIcon.displayName = 'FormatAnnotationPlusIcon'
FormatAnnotationPlusIcon.defaultProps = {
size: 24
}
export default FormatAnnotationPlusIcon