@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 704 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 TableRowPlusBeforeIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M22,14C22,12.9 21.1,12 20,12H4C2.9,12 2,12.9 2,14V21H4V19H8V21H10V19H14V21H16V19H20V21H22V14M4,14H8V17H4V14M10,14H14V17H10V14M20,14V17H16V14H20M11,10H13V7H16V5H13V2H11V5H8V7H11V10Z' />
</Svg>
)
TableRowPlusBeforeIcon.displayName = 'TableRowPlusBeforeIcon'
TableRowPlusBeforeIcon.defaultProps = {
size: 24
}
export default TableRowPlusBeforeIcon