Logo
Elite SVG logo with abstract geometric symbols, upward momentum themes, and interactive glow effects.
Simple Build
Interactive Preview
Initialising Operative...
Architecture
Component Architecture
Logo/
Prop Usage
| Prop | Type | Default | Description |
|---|---|---|---|
variant | "small" | "med" | "big" | "med" | Preset size variant (24 / 40 / 64px). |
size | number | — | Explicit pixel size — overrides variant. |
showText | boolean | false | Renders the brand name next to the symbol. |
href | string | "/" | Link destination when the logo is clicked. |
className | string | — | Additional classes for the wrapper link. |
Usage
import { Logo } from '@/ui';
// Default (medium, symbol only)
<Logo />
// With text
<Logo showText />
// Custom size
<Logo size={80} />
// Link to a custom path
<Logo href="/home" />