Files
CRM_ENVR/src/components/shared/captain-america-shield.tsx
T
Ace d35c806d5b feat: Enhance provider components with detailed documentation and comments
- Added comprehensive comments and JSDoc-style documentation to NotificationProvider, ThemeProvider, UserProvider, and WebsiteThemeProvider for better clarity and maintainability.
- Improved type definitions in index.ts for better code understanding and usage.
- Introduced Docker support with Dockerfiles for various services including AI server, signaling server, and browser-use service.
- Created a docker-compose.yml file to orchestrate multiple services including PostgreSQL, AI, scraper, and frontend.
- Added a startup guide (startup.txt) for setting up the CRM environment on Ubuntu with Docker.
- Included a .dockerignore file to exclude unnecessary files from Docker builds.
2026-07-13 13:05:30 +02:00

26 lines
805 B
TypeScript

// ── Shared: Captain America Shield SVG Icon ──
// Decorative SVG rendering Captain America's shield, used for the "Spidey" theme.
"use client"
/**
* CaptainAmericaShield — an SVG icon of Captain America's shield.
* Used as a decorative element in the topbar when the Spidey theme is active.
*/
export function CaptainAmericaShield() {
return (
<svg
width="28"
height="28"
viewBox="0 0 100 100"
aria-hidden="true"
>
<circle cx="50" cy="50" r="48" fill="#c62828" />
<circle cx="50" cy="50" r="36" fill="#efefef" />
<circle cx="50" cy="50" r="24" fill="#c62828" />
<circle cx="50" cy="50" r="14" fill="#1565c0" />
<polygon points="50,34 55,48 70,48 58,57 62,72 50,62 38,72 42,57 30,48 45,48" fill="#efefef" />
</svg>
)
}