UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

10 lines (9 loc) 258 B
/// <reference types="react" /> export interface FontLoaderProps { /** * @description The URL of the font to load */ url: string; } declare const FontLoader: import("react").NamedExoticComponent<FontLoaderProps>; export default FontLoader;