@uiw/react-native
Version:
UIW for React Native
21 lines (20 loc) • 588 B
TypeScript
import React, { ReactNode } from 'react';
import { ViewStyle, TextStyle } from 'react-native';
export interface ActionBarActionsProps {
label?: string;
onPress?: () => void;
fontStyle?: TextStyle;
render?: ReactNode;
}
export declare type ActionBarProps = {
height?: number;
backgroundColor?: string;
actions?: ActionBarActionsProps[];
keepAbsoulte?: boolean;
style?: ViewStyle;
scroll?: boolean;
useSafeArea?: boolean;
focusIndex?: number;
};
declare function ActionBar(props: ActionBarProps): React.JSX.Element;
export default ActionBar;