react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 356 B
JavaScript
import React from 'react';
export default function TemperatureKelvinIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-temperature-kelvin ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M7 5h3v6l5-6h4l-5.12 5.78L19 20h-3.62l-3.62-6.83L10 15.15V20H7V5z" />
</svg>
);
}