react-material-icon-svg
Version:
React material icon jsx version
10 lines (8 loc) • 325 B
JavaScript
import React from 'react';
export default function MusicRestEighthIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-music-rest-eighth ${props.className}`}>
<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>
);
}