UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 305 B
import * as React from 'react'; export type CardsProps = React.PropsWithChildren<{ columns?: number; cardMinWidth?: number; className?: string; ariaLabel?: string; }>; export declare function Cards({ cardMinWidth, columns, className, children, ariaLabel }: CardsProps): React.JSX.Element;