react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 341 B
JavaScript
import React from 'react';
export default function BingIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-bing ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M5 3v16l3.72 2L18 15.82v-4.09L9.77 8.95l1.61 3.89L13.94 14 8.7 16.92V4.27L5 3" />
</svg>
);
}