UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

11 lines (10 loc) 447 B
import type { ReactNode } from 'react'; export interface MarketingHeaderLogoProps { mark?: ReactNode; word?: ReactNode; href?: string; /** Accessible name for the logo link. Falls back to `word` if it's a string, then to "Home". */ label?: string; className?: string; } export declare function MarketingHeaderLogo({ mark, word, href, label, className, }: MarketingHeaderLogoProps): import("react/jsx-runtime").JSX.Element;