UNPKG

@amaui/ui-react

Version:
12 lines (11 loc) 416 B
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;