UNPKG

afro-react-icons

Version:

A professional React icon pack inspired by African culture and design, featuring tribal symbols, kente patterns, drums, masks, and more.

26 lines (22 loc) 575 B
import React from 'react'; const GyeNyame = ({ size = 24, color = 'currentColor', ...props }) => ( <svg width={size} height={size} viewBox="0 0 24 24" fill="none" stroke={color} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" xmlns="http://www.w3.org/2000/svg" {...props} > <path d="M12 2c-3 0-5 2-5 5s2 5 5 5 5-2 5-5-2-5-5-5z" /> <path d="M8 8c-2 2-2 6 0 8l4-4 4 4c2-2 2-6 0-8" /> <path d="M12 12v10" /> <path d="M9 19h6" /> <circle cx="12" cy="5" r="1" /> </svg> ); export default GyeNyame;