import React from 'react'; // --------------------------------------------------------------------------- // AtlasIcon — SVG recreation of the Atlas InfoSec logo icon. // A rounded badge/card shape with a globe (crosshair grid) inside. // Accepts the same props as lucide-react icons: style, width, height, color. // ⚠️ CONVENTION: Uses raw SVG instead of lucide-react. Acceptable here because // this is a custom brand icon (Atlas InfoSec logo) with no lucide-react equivalent. // --------------------------------------------------------------------------- export default function AtlasIcon({ style, width, height, color, ...props }) { const w = width || (style && style.width) || 24; const h = height || (style && style.height) || 24; const c = color || (style && style.color) || 'currentColor'; return ( {/* Badge / card outline — rounded rectangle */} {/* Globe circle */} {/* Globe horizontal line */} {/* Globe vertical line */} {/* Globe left meridian arc */} {/* Globe right meridian arc */} ); }