react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 363 B
JavaScript
import React from 'react';
export default function ConsoleLineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-console-line ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M13 19v-3h8v3h-8m-4.5-6L2.47 7h4.24l4.96 4.95c.58.59.58 1.55 0 2.12L6.74 19H2.5l6-6z" />
</svg>
);
}