design-react-kit
Version:
Componenti React per Bootstrap 5
10 lines (9 loc) • 378 B
TypeScript
export interface FontLoaderProps {
/**
* Una lista di font aggiuntivi da caricare.
* I font di default Titillium Web, Lora and Roboto Mono vengono aggiunti a questa lista e caricati sempre.
* */
fonts?: string[];
}
export declare function useFontLoader({ fonts }: FontLoaderProps): void;
export declare const FontLoader: (props: FontLoaderProps) => null;