bird
design • interface • vector
General
react
import React from 'react';
export const Bird = (props) => (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
<path d="M 16 7 A 4 4 0 0 1 20 11 V 13 L 23 11 L 20 15 H 17 C 14 15 12 17 12 20 V 22" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M 16 7 C 12 7 8 10 8 15 V 22" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<circle cx="17.5" cy="9.5" r="1" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
export default Bird;