@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 701 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 Printer3DNozzleOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M7,2H17V7H19V13H16.5L13,17H11L7.5,13H5V7H7V2M10,22H2V20H10C10.55,20 11,19.55 11,19V18H13V19C13,20.66 11.66,22 10,22M7,9V11H8.5L12,15L15.5,11H17V9H15V4H9V9H7Z' />
</Svg>
)
Printer3DNozzleOutlineIcon.displayName = 'Printer3DNozzleOutlineIcon'
Printer3DNozzleOutlineIcon.defaultProps = {
size: 24
}
export default Printer3DNozzleOutlineIcon