@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 629 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 ContentCopyIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M19,21H8V7H19M19,5H8C6.9,5 6,5.9 6,7V21C6,22.1 6.9,23 8,23H19C20.1,23 21,22.1 21,21V7C21,5.9 20.1,5 19,5M16,1H4C2.9,1 2,1.9 2,3V17H4V3H16V1Z' />
</Svg>
)
ContentCopyIcon.displayName = 'ContentCopyIcon'
ContentCopyIcon.defaultProps = {
size: 24
}
export default ContentCopyIcon