react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 383 B
JavaScript
import React from 'react';
export default function MusicRestEighthIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-music-rest-eighth ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M14 6a5.56 5.56 0 0 1-3.05 1.86A1.5 1.5 0 1 0 9.5 9h.24a6.32 6.32 0 0 0 3.51-1.07L10 18h2l4-12z" />
</svg>
);
}