react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 522 B
JavaScript
import React from 'react';
export default function DuckIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-duck ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M8.5 5A1.5 1.5 0 0 0 7 6.5 1.5 1.5 0 0 0 8.5 8 1.5 1.5 0 0 0 10 6.5 1.5 1.5 0 0 0 8.5 5M10 2a5 5 0 0 1 5 5c0 1.7-.85 3.2-2.14 4.1 1.58.15 3.36.51 5.14 1.4 3 1.5 4-.5 4-.5s-1 9-7 9H9s-5 0-5-5c0-3 3-4 2-6-4 0-4-3.5-4-3.5 1 .5 2.24.5 3 .15A5.02 5.02 0 0 1 10 2z" />
</svg>
);
}