@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 621 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 ElevationRiseIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M3,21V17.29L10.78,12.8L14.55,15L21,11.25V21H3M21,8.94L14.55,12.67L10.78,10.5L3,15V12.79L10.78,8.3L14.55,10.5L21,6.75V8.94Z' />
</Svg>
)
ElevationRiseIcon.displayName = 'ElevationRiseIcon'
ElevationRiseIcon.defaultProps = {
size: 24
}
export default ElevationRiseIcon