Viewing File: /home/ubuntu/todaykat-frontend-base/node_modules/react-toastify/dist/components/Icons.d.ts

import React from 'react';
import { Theme, ToastProps, TypeOptions } from '../types';
/**
 * Used when providing custom icon
 */
export interface IconProps {
    theme: Theme;
    type: TypeOptions;
}
export declare type BuiltInIconProps = React.SVGProps<SVGSVGElement> & IconProps;
declare function Warning(props: BuiltInIconProps): JSX.Element;
declare function Info(props: BuiltInIconProps): JSX.Element;
declare function Success(props: BuiltInIconProps): JSX.Element;
declare function Error(props: BuiltInIconProps): JSX.Element;
declare function Spinner(): JSX.Element;
export declare const Icons: {
    info: typeof Info;
    warning: typeof Warning;
    success: typeof Success;
    error: typeof Error;
    spinner: typeof Spinner;
};
export declare function getIcon({ theme, type, isLoading, icon }: ToastProps): React.ReactNode;
export {};
Back to Directory File Manager