| 123456789101112131415161718192021222324252627282930313233 |
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
- <!-- Cat face background -->
- <circle cx="16" cy="16" r="14" fill="#f5f5f5" stroke="#333" stroke-width="1"/>
-
- <!-- Cat ears -->
- <polygon points="8,8 12,2 16,8" fill="#f5f5f5" stroke="#333" stroke-width="1"/>
- <polygon points="16,8 20,2 24,8" fill="#f5f5f5" stroke="#333" stroke-width="1"/>
-
- <!-- Inner ears -->
- <polygon points="9,7 11,4 13,7" fill="#ffb3d9"/>
- <polygon points="19,7 21,4 23,7" fill="#ffb3d9"/>
-
- <!-- Eyes -->
- <ellipse cx="12" cy="14" rx="2" ry="3" fill="#333"/>
- <ellipse cx="20" cy="14" rx="2" ry="3" fill="#333"/>
-
- <!-- Eye highlights -->
- <ellipse cx="12.5" cy="13" rx="0.5" ry="1" fill="white"/>
- <ellipse cx="20.5" cy="13" rx="0.5" ry="1" fill="white"/>
-
- <!-- Nose -->
- <polygon points="16,18 14,20 18,20" fill="#ffb3d9"/>
-
- <!-- Mouth -->
- <path d="M 16 20 Q 13 22 11 20" stroke="#333" stroke-width="1" fill="none"/>
- <path d="M 16 20 Q 19 22 21 20" stroke="#333" stroke-width="1" fill="none"/>
-
- <!-- Whiskers -->
- <line x1="6" y1="16" x2="10" y2="15" stroke="#333" stroke-width="1"/>
- <line x1="6" y1="18" x2="10" y2="18" stroke="#333" stroke-width="1"/>
- <line x1="22" y1="15" x2="26" y2="16" stroke="#333" stroke-width="1"/>
- <line x1="22" y1="18" x2="26" y2="18" stroke="#333" stroke-width="1"/>
- </svg>
|