mod-arch-shared
Version:
Shared UI components and utilities for modular architecture micro-frontend projects
14 lines • 479 B
TypeScript
import * as React from 'react';
import { GalleryProps } from '@patternfly/react-core';
type DividedGalleryProps = Omit<GalleryProps, 'minWidths' | 'maxWidths'> & {
minSize: string;
itemCount: number;
showClose?: boolean;
closeAlt?: string;
onClose?: () => void;
closeTestId?: string;
};
import './DividedGallery.scss';
declare const DividedGallery: React.FC<DividedGalleryProps>;
export default DividedGallery;
//# sourceMappingURL=DividedGallery.d.ts.map