UNPKG

alouette

Version:

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

8 lines 627 B
import type { ReactNode } from "react"; import { type SectionListProps } from "../primitives/SectionList"; import { type ScreenSafeAreaProps } from "./useScreenContainerProps"; export interface ScreenSectionListProps<ItemT, SectionT> extends SectionListProps<ItemT, SectionT>, ScreenSafeAreaProps { } /** A `SectionList` filling the screen, with safe-area insets as content padding. */ export declare function ScreenSectionList<ItemT, SectionT>({ className, contentContainerClassName, contentContainerStyle, edges, ...props }: ScreenSectionListProps<ItemT, SectionT>): ReactNode; //# sourceMappingURL=ScreenSectionList.d.ts.map