@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 596 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 TuneVerticalIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5,3V12H3V14H5V21H7V14H9V12H7V3M11,3V8H9V10H11V21H13V10H15V8H13V3M17,3V14H15V16H17V21H19V16H21V14H19V3' />
</Svg>
)
TuneVerticalIcon.displayName = 'TuneVerticalIcon'
TuneVerticalIcon.defaultProps = {
size: 24
}
export default TuneVerticalIcon