react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 607 B
JavaScript
import React from 'react';
export default function MusicAccidentalDoubleFlatIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-music-accidental-double-flat ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15.5 9c-.7 0-1.39.28-2 .67V5h-2v4.62c-.46-.38-1.11-.62-2-.62-.7 0-1.39.28-2 .67V5h-2v14c3-1.68 4.93-3.21 6-4.59V19c4.86-2.74 7-5.09 7-7 0-1.41-.71-3-3-3m-8 6.38v-3.12c.62-.67 1.45-1.26 2-1.26.59 0 1 .07 1 1 0 .15-.1 1.3-3 3.38m6 0v-3.12c.62-.67 1.45-1.26 2-1.26.59 0 1 .07 1 1 0 .15-.1 1.3-3 3.38z" />
</svg>
);
}