UNPKG

@kwiz/fluentui

Version:
15 lines (14 loc) 554 B
import React from 'react'; import { iCardProps } from './card'; import { iOverflowV2Props } from './kwizoverflow2'; interface iProps { cards: iCardProps[]; /** centered back-fill control */ backfill?: JSX.Element; /** single line fit, when overflow - more button will trigger this handler */ useOverflow?: boolean; renderOverflowMenuButton?: (props: iOverflowV2Props<iCardProps>) => JSX.Element; autoFocusOnFirst?: boolean; } export declare const CardList: React.FunctionComponent<React.PropsWithChildren<iProps>>; export {};