| 123456789101112131415161718192021222324252627 |
- import React from 'react';
- const BrainCircuitIcon: React.FC = () => (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="28"
- height="28"
- viewBox="0 0 24 24"
- fill="none"
- stroke="currentColor"
- strokeWidth="2"
- strokeLinecap="round"
- strokeLinejoin="round"
- >
- <path d="M12 8V4m-2 2h4"/>
- <path d="M12 20v-4m-2 2h4"/>
- <path d="M8 12H4m2-2v4"/>
- <path d="M20 12h-4m2-2v4"/>
- <path d="M9.4 9.4l-2.8-2.8"/>
- <path d="M17.4 17.4l-2.8-2.8"/>
- <path d="M9.4 14.6l-2.8 2.8"/>
- <path d="M17.4 6.6l-2.8 2.8"/>
- <circle cx="12" cy="12" r="3"/>
- </svg>
- );
- export default BrainCircuitIcon;
|