Repository URL to install this package:
|
Version:
0.7.4+sf.2 ▾
|
import React from 'react';
declare type Props = {
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
as?: React.ElementType<any>;
currentlySelected?: boolean;
ready?: boolean;
recent?: boolean;
name: string;
iconUrl: string | (() => Promise<string>);
iconBackground?: string;
testId?: string;
};
export declare const ModalSelection: {
({ as, currentlySelected, iconBackground, iconUrl, name, onClick, ready, recent, testId, ...urlProps }: Props): JSX.Element;
displayName: string;
};
export {};