Function: KeaLogo()
function KeaLogo(props: Readonly<KeaLogoProps>): Element;
Defined in: KeaLogo.tsx:46
Renders the KEA Wallet logo as an inline SVG.
The aspect ratio of the original artwork (102 : 96) is preserved
automatically — only the size (width) needs to be specified.
Parameters
| Parameter | Type | Description |
|---|---|---|
props | Readonly<KeaLogoProps> | Logo props (optional size) |
Returns
Element
Examples
Default size (24 px):
import { KeaLogo } from '@kea-wallet/react-ui';
<KeaLogo />
Custom size in a navigation bar:
import { KeaLogo } from '@kea-wallet/react-ui';
function NavBar() {
return (
<nav style={{ display: 'flex', alignItems: 'center', gap: 8 }}>
<KeaLogo size={32} />
<span>My dApp</span>
</nav>
);
}
See
KeaLogoProps for available props.