@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 628 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 ChevronDoubleUpIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M7.41,18.41L6,17L12,11L18,17L16.59,18.41L12,13.83L7.41,18.41M7.41,12.41L6,11L12,5L18,11L16.59,12.41L12,7.83L7.41,12.41Z' />
</Svg>
)
ChevronDoubleUpIcon.displayName = 'ChevronDoubleUpIcon'
ChevronDoubleUpIcon.defaultProps = {
size: 24
}
export default ChevronDoubleUpIcon