@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 659 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 IcePopIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M18.15,14.96L9.95,18.65L5.85,9.65C7.21,9.13 8.12,7.82 8.15,6.36C8.14,5 7.36,3.76 6.15,3.15C6.54,2.8 7,2.5 7.45,2.25C9.71,1.25 12.37,2.23 13.45,4.46M13.15,18.36L14.75,21.86L17.45,20.65L15.85,17.15' />
</Svg>
)
IcePopIcon.displayName = 'IcePopIcon'
IcePopIcon.defaultProps = {
size: 24
}
export default IcePopIcon