react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 357 B
JavaScript
import React from 'react';
export default function VuetifyIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-vuetify ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 11.64L7.92 2h8.16L12 11.64m0 10.31L3.27 4.91h4.57L12 14.47l4.16-9.56h4.57L12 21.95z" />
</svg>
);
}