@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 539 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 ArrowUpIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z' />
</Svg>
)
ArrowUpIcon.displayName = 'ArrowUpIcon'
ArrowUpIcon.defaultProps = {
size: 24
}
export default ArrowUpIcon