UNPKG

@apexcura/ui-builder

Version:

A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.

18 lines (17 loc) 455 B
import React from 'react'; export interface FileItem { filename: string; path: string; uploadedAt?: string | Date; } export interface ACFileGalleryProps { files: FileItem[]; openInNewTab?: boolean; containerClassName?: string; itemClassName?: string; imageClassName?: string; showFileName?: boolean; showDate?: boolean; emptyMessage?: string; } export declare const ACFileGallery: React.FC<ACFileGalleryProps>;