apphouse
Version:
Component library for React that uses observable state management and theme-able components.
24 lines (23 loc) • 458 B
TypeScript
import React from 'react';
export interface LoaderTypingProps {
/**
* The color of the loader
* @default onPrimary
* */
color?: string;
/**
* The size of the loader
* @default 100
*/
size?: number;
/**
* The id of the loader
*/
id: string;
/**
* The radius of the loader
* @default 10
*/
radius?: number;
}
export declare const LoaderTyping: React.FC<LoaderTypingProps>;