@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 631 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 MenuSwapOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,3.5L6,9.5V11H18V9.5L12,3.5M12,6.33L14.67,9H9.33L12,6.33M6,13V14.5L12,20.5L18,14.5V13H6M9.33,15H14.67L12,17.67L9.33,15Z' />
</Svg>
)
MenuSwapOutlineIcon.displayName = 'MenuSwapOutlineIcon'
MenuSwapOutlineIcon.defaultProps = {
size: 24
}
export default MenuSwapOutlineIcon