@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 655 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 TableMergeCellsIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5,10H3V4H11V6H5V10M19,18H13V20H21V14H19V18M5,18V14H3V20H11V18H5M21,4H13V6H19V10H21V4M8,13V15L11,12L8,9V11H3V13H8M16,11V9L13,12L16,15V13H21V11H16Z' />
</Svg>
)
TableMergeCellsIcon.displayName = 'TableMergeCellsIcon'
TableMergeCellsIcon.defaultProps = {
size: 24
}
export default TableMergeCellsIcon