mod-arch-shared
Version:
Shared UI components and utilities for modular architecture micro-frontend projects
15 lines • 515 B
TypeScript
import * as React from 'react';
import { GalleryItemProps } from '@patternfly/react-core';
import { SectionType } from '../../components/design/utils';
type InfoGalleryItemProps = {
title: string;
imgSrc: string;
sectionType: SectionType;
description: React.ReactNode;
isOpen: boolean;
onClick?: () => void;
testId?: string;
} & GalleryItemProps;
declare const InfoGalleryItem: React.FC<InfoGalleryItemProps>;
export default InfoGalleryItem;
//# sourceMappingURL=InfoGalleryItem.d.ts.map