UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

10 lines (9 loc) 264 B
import React from 'react'; interface LoaderProps { size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; color?: string; variant?: 'bars' | 'dots'; } declare const LoaderComponent: React.FC<LoaderProps>; export default LoaderComponent; export type { LoaderProps };