import React from 'react';
export default function NumericNegative_1Icon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-numeric-negative-1 ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M13 7v2h2v8h2V7h-4m-2 6H6v-2h5v2z" />
</svg>
);
}