@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 564 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 SerialPortIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M7,3H17V5H19V8H16V14H8V8H5V5H7V3M17,9H19V14H17V9M11,15H13V22H11V15M5,9H7V14H5V9Z' />
</Svg>
)
SerialPortIcon.displayName = 'SerialPortIcon'
SerialPortIcon.defaultProps = {
size: 24
}
export default SerialPortIcon