react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 403 B
JavaScript
import React from 'react';
export default function ElevationDeclineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-elevation-decline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M21 21H3v-9.75L9.45 15l3.77-2.2L21 17.29V21M3 8.94V6.75l6.45 3.75 3.77-2.2L21 12.79V15l-7.78-4.5-3.77 2.17L3 8.94z" />
</svg>
);
}