@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 703 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 ContentDuplicateIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M11,17H4C2.9,17 2,16.1 2,15V3C2,1.9 2.9,1 4,1H16V3H4V15H11V13L15,16L11,19V17M19,21V7H8V13H6V7C6,5.9 6.9,5 8,5H19C20.1,5 21,5.9 21,7V21C21,22.1 20.1,23 19,23H8C6.9,23 6,22.1 6,21V19H8V21H19Z' />
</Svg>
)
ContentDuplicateIcon.displayName = 'ContentDuplicateIcon'
ContentDuplicateIcon.defaultProps = {
size: 24
}
export default ContentDuplicateIcon