@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 716 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 ArrowTopRightBoldOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5.64,4.22H19.78V18.36L15.54,14.12L9.88,19.78L4.22,14.12L9.88,8.46L5.64,4.22M17.66,6.34H10.59L12.71,8.46L7.05,14.12L9.88,16.95L15.54,11.29L17.66,13.41V6.34H17.66Z' />
</Svg>
)
ArrowTopRightBoldOutlineIcon.displayName = 'ArrowTopRightBoldOutlineIcon'
ArrowTopRightBoldOutlineIcon.defaultProps = {
size: 24
}
export default ArrowTopRightBoldOutlineIcon