UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

10 lines (9 loc) 280 B
import React from 'react'; import { ScreenConfig, Styles } from '../types'; export interface LoaderProps { config: ScreenConfig; text?: string; style?: Styles; } declare const Loader: ({ config, text, style }: LoaderProps) => React.JSX.Element; export default Loader;