@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 771 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 ScrewMachineRoundTopIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M14.5,7.3L13.5,8V7H10.5V10L9.5,10.7V11.7L14.5,8.4V7.3M14.5,11.3L13.5,12V10L10.5,12V14L9.5,14.7V15.7L14.5,12.4V11.3M14.5,15.3L13.5,16V14L10.5,16V18L9.5,18.7V19.7L14.5,16.4V15.3M7,6H17C17,6 16,3 12,3C8,3 7,6 7,6M13.5,18V21H10.5V20L13.5,18Z' />
</Svg>
)
ScrewMachineRoundTopIcon.displayName = 'ScrewMachineRoundTopIcon'
ScrewMachineRoundTopIcon.defaultProps = {
size: 24
}
export default ScrewMachineRoundTopIcon