UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

16 lines (15 loc) 855 B
import React from 'react'; import { type BoxProps } from '../Box/Box'; import { type FunFeatureListItemProps } from './FunFeatureListItem'; interface FunFeatureListProps { items: FunFeatureListItemProps[]; /** if is expandable, the first `items` entry is used as the always displayed item, the rest will become collapsible */ isExpandable?: boolean; disabled?: boolean; withBackgroundContainer?: boolean; /** Whether background should be applied only to individual items. Defaults to false since background is applied to the container by default */ withBackgroundItem?: boolean; gapBetweenItems?: Extract<BoxProps['gap'], string>; } export declare const FunFeatureList: ({ items, isExpandable, disabled, withBackgroundContainer, withBackgroundItem, gapBetweenItems, }: FunFeatureListProps) => React.JSX.Element; export {};