@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
11 lines (10 loc) • 415 B
TypeScript
import React, { type ReactNode } from 'react';
import { type BoxProps } from '../Box/Box';
export interface FunFeatureListItemProps extends BoxProps {
text?: ReactNode;
tooltip?: ReactNode;
value?: string | string[];
prefix?: string;
icon: ReactNode;
}
export declare const FunFeatureListItem: ({ text, tooltip, value, prefix, icon, ...boxProps }: FunFeatureListItemProps) => React.JSX.Element;