mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-15 22:01:06 +00:00
15 lines
513 B
TypeScript
15 lines
513 B
TypeScript
import type { IconName } from '@fortawesome/fontawesome-svg-core';
|
|
import React from 'react';
|
|
interface Props {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
icon: IconName;
|
|
isBottom?: boolean;
|
|
isFull?: boolean;
|
|
type: 'error' | 'info';
|
|
isDev?: boolean;
|
|
}
|
|
declare function BaseOverlay({ children, className, icon, isBottom, isDev, isFull, type }: Props): React.ReactElement<Props> | null;
|
|
declare const _default: React.MemoExoticComponent<typeof BaseOverlay>;
|
|
export default _default;
|