@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 640 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 ChevronDoubleRightIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5.59,7.41L7,6L13,12L7,18L5.59,16.59L10.17,12L5.59,7.41M11.59,7.41L13,6L19,12L13,18L11.59,16.59L16.17,12L11.59,7.41Z' />
</Svg>
)
ChevronDoubleRightIcon.displayName = 'ChevronDoubleRightIcon'
ChevronDoubleRightIcon.defaultProps = {
size: 24
}
export default ChevronDoubleRightIcon