@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 692 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 CoffeeOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M2,21V19H20V21H2M20,8V5H18V8H20M20,3C21.1,3 22,3.9 22,5V8C22,9.1 21.1,10 20,10H18V13C18,15.21 16.21,17 14,17H8C5.79,17 4,15.21 4,13V3H20M16,5H6V13C6,14.1 6.9,15 8,15H14C15.1,15 16,14.1 16,13V5Z' />
</Svg>
)
CoffeeOutlineIcon.displayName = 'CoffeeOutlineIcon'
CoffeeOutlineIcon.defaultProps = {
size: 24
}
export default CoffeeOutlineIcon