@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 594 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 PentagonOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,5L19.6,10.5L16.7,19.4H7.3L4.4,10.5L12,5M12,2.5L2,9.8L5.8,21.5H18.1L22,9.8L12,2.5Z' />
</Svg>
)
PentagonOutlineIcon.displayName = 'PentagonOutlineIcon'
PentagonOutlineIcon.defaultProps = {
size: 24
}
export default PentagonOutlineIcon