react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 551 B
JavaScript
import React from 'react';
export default function MusicNoteBluetoothIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-music-note-bluetooth ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 9.85L19.14 7h-.5v3.79L16.35 8.5l-.71.71L18.43 12l-2.79 2.79.71.71 2.29-2.29V17h.5L22 14.15 19.85 12 22 9.85m-2.36-.94l.94.94-.94.94V8.91m.94 5.24l-.94.94v-1.88l.94.94M9.64 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" />
</svg>
);
}