/** * SvList - a themed ordered / unordered / unstyled list. Pass `items` for the * simple case, or a `children` snippet for full control over each `
  • `. * * * */ import type { Snippet } from 'svelte'; type Props = { /** Marker style. `none` drops markers + indentation. */ type?: 'unordered' | 'ordered' | 'none'; /** Simple string items (skip the snippet). */ items?: string[]; /** Vertical gap between items. */ spacing?: 'sm' | 'md' | 'lg'; /** Font size step. */ size?: 'sm' | 'md' | 'lg'; /** Custom list content (`
  • ` elements). Overrides `items`. */ children?: Snippet; }; declare const SvList: import("svelte").Component; type SvList = ReturnType; export default SvList;