@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 613 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 EngineOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M8,10H16V18H11L9,16H7V11M7,4V6H10V8H7L5,10V13H3V10H1V18H3V15H5V18H8L10,20H18V16H20V19H23V9H20V12H18V8H12V6H15V4H7Z' />
</Svg>
)
EngineOutlineIcon.displayName = 'EngineOutlineIcon'
EngineOutlineIcon.defaultProps = {
size: 24
}
export default EngineOutlineIcon