aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
32 lines • 954 B
TypeScript
/**
* Glass ImageList Component
*
* A grid of images with glass morphism styling.
*/
import React from 'react';
import { ImageListProps } from './types';
export interface ImageListContextProps {
variant: 'standard' | 'quilted' | 'masonry' | 'woven';
rowHeight: number | 'auto';
gap: number;
cols: number;
glass: boolean;
variableSize: boolean;
glassRadiusMd: boolean;
}
export declare const ImageListContext: React.Context<ImageListContextProps>;
/**
* ImageList Component
*
* A grid of images.
*/
declare const ImageList: React.ForwardRefExoticComponent<ImageListProps & React.RefAttributes<HTMLUListElement>>;
/**
* GlassImageList Component
*
* Glass variant of the ImageList component.
*/
declare const GlassImageList: React.ForwardRefExoticComponent<ImageListProps & React.RefAttributes<HTMLUListElement>>;
export default ImageList;
export { ImageList, GlassImageList };
//# sourceMappingURL=ImageList.d.ts.map