/** * SvSimpleGrid - a responsive grid primitive: lays children into `cols` equal * columns that auto-fit down to a `minChildWidth` before wrapping, with a * consistent `gap`. Use it for card galleries, stat tiles, and dashboards. * * ```svelte * {#each tiles as t}{/each} * ``` */ import type { Snippet } from 'svelte'; type Props = { /** * Fixed column count. When omitted, columns auto-fit based on * `minChildWidth` (responsive by default). */ cols?: number; /** Minimum child width (px) before wrapping, for the auto-fit layout. Default 200. */ minChildWidth?: number; /** Gap between cells (px, or any CSS length). Default 12. */ gap?: number | string; children?: Snippet; }; declare const SvSimpleGrid: import("svelte").Component; type SvSimpleGrid = ReturnType; export default SvSimpleGrid;