Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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 {};