@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 666 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 TrophyAwardIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M15.2,10.7L16.6,16L12,12.2L7.4,16L8.8,10.8L4.6,7.3L10,7L12,2L14,7L19.4,7.3L15.2,10.7M14,19.1H13V16L12,15L11,16V19.1H10C8.9,19.1 8,20 8,21.1V22.1H16V21.1C16,20 15.1,19.1 14,19.1Z' />
</Svg>
)
TrophyAwardIcon.displayName = 'TrophyAwardIcon'
TrophyAwardIcon.defaultProps = {
size: 24
}
export default TrophyAwardIcon