UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

20 lines (19 loc) 544 B
import { type ReactNode } from 'react'; import { DivProps } from "../types"; export interface LogoProps extends DivProps { /** * @description Additional React Node to be rendered next to the logo */ extra?: ReactNode; /** * @description Size of the logo in pixels * @default 32 */ size?: number; /** * @description Type of the logo to be rendered * @default 'img' */ type?: 'img' | 'text' | 'combine'; } export declare const Logo: import("react").NamedExoticComponent<LogoProps>;