alouette
Version:
A modern, customizable design system built on top of NativeWind v5 with configurable defaults
11 lines • 489 B
TypeScript
import type { ReactNode } from "react";
import { type ViewProps } from "../primitives/View";
export interface AppHeaderActionsProps extends ViewProps {
children: ReactNode;
}
/**
* End slot of an `AppHeader`: session controls, notifications, a settings
* button. The header aligns the slot itself, so this only spaces its children.
*/
export declare function AppHeaderActions({ className, ...props }: AppHeaderActionsProps): ReactNode;
//# sourceMappingURL=AppHeaderActions.d.ts.map