@daimo/pay
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
18 lines (17 loc) • 531 B
TypeScript
export interface Option {
id: string;
sortValue?: number;
title: string;
subtitle?: string;
icons: (React.ReactNode | string)[];
onClick: () => void;
disabled?: boolean;
}
export declare const OptionsList: ({ options, isLoading, requiredSkeletons, scrollHeight, orDivider, hideBottomLine, }: {
options: Option[];
isLoading?: boolean;
requiredSkeletons?: number;
scrollHeight?: number;
orDivider?: boolean;
hideBottomLine?: boolean;
}) => import("react/jsx-runtime").JSX.Element;