Skip to main content

LogoIcon

The VEF framework logo as an SVG component.

VEF-specific component. New in @vef-framework-react/components v2.1.6.

Basic Usage

import { LogoIcon } from '@vef-framework-react/components';

export default function AppLogo() {
return <LogoIcon width={32} height={32} />;
}

With Custom Color

<LogoIcon primaryColor="#1677ff" width={40} height={40} />

API

PropTypeDefaultDescription
primaryColorstringthe blue-500 palette colorPrimary color of the logo; the secondary strokes use the 400 shade derived from the same palette

All standard SVG props (width, height, className, style, etc.) are also supported. Without an explicit size the logo renders at 1em, scaling with the surrounding font size.