UNPKG

alouette

Version:

A modern, customizable design system built on top of NativeWind v5 with configurable defaults

20 lines 682 B
import { type ReactNode } from "react"; export interface StoryGridRowProps { children: NonNullable<ReactNode>; breakpoint?: "medium" | "small"; flexWrap?: boolean; loose?: boolean; } declare function StoryGridRow({ children, breakpoint, flexWrap, loose, }: StoryGridRowProps): ReactNode; export interface StoryGridColProps { children: NonNullable<ReactNode>; title?: string; platform?: "all" | "native" | "web"; } declare function StoryGridCol({ title, children, platform, }: StoryGridColProps): ReactNode; export declare const StoryGrid: { Row: typeof StoryGridRow; Col: typeof StoryGridCol; }; export {}; //# sourceMappingURL=StoryGrid.d.ts.map