@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 633 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 ElevationDeclineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M21,21H3V11.25L9.45,15L13.22,12.8L21,17.29V21M3,8.94V6.75L9.45,10.5L13.22,8.3L21,12.79V15L13.22,10.5L9.45,12.67L3,8.94Z' />
</Svg>
)
ElevationDeclineIcon.displayName = 'ElevationDeclineIcon'
ElevationDeclineIcon.defaultProps = {
size: 24
}
export default ElevationDeclineIcon