@amaui/ui-react
Version:
UI for React
12 lines (11 loc) • 416 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
import { IValueBreakpoints } from '../types';
export interface IMasonry extends Omit<ILine, 'gap'> {
gap?: number | Partial<Record<IValueBreakpoints, number>>;
columns?: number | Partial<Record<IValueBreakpoints, number>>;
noMasonry?: boolean;
NoMasonryProps?: any;
}
declare const Masonry: React.FC<IMasonry>;
export default Masonry;