@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 619 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 ShapePolygonPlusIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M17,15.7V13H19V17L10,21L3,14L7,5H11V7H8.3L5.4,13.6L10.4,18.6L17,15.7M22,5V7H19V10H17V7H14V5H17V2H19V5H22Z' />
</Svg>
)
ShapePolygonPlusIcon.displayName = 'ShapePolygonPlusIcon'
ShapePolygonPlusIcon.defaultProps = {
size: 24
}
export default ShapePolygonPlusIcon