@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 554 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 PageFirstIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z' />
</Svg>
)
PageFirstIcon.displayName = 'PageFirstIcon'
PageFirstIcon.defaultProps = {
size: 24
}
export default PageFirstIcon