UNPKG

@cgi-learning-hub/ui

Version:

@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features

13 lines (12 loc) 328 B
export type FolderCardProps = { isSelected?: boolean; onSelect?: () => void; title: string; subtitle?: string; width?: string; onClick?: () => void; iconSize?: string; hasNoButtonOnFocus?: boolean; }; declare const FolderCard: React.FunctionComponent<FolderCardProps>; export default FolderCard;