@rneui/base
Version:
Cross Platform React Native UI Toolkit
10 lines (9 loc) • 339 B
TypeScript
import { StyleProp, ViewStyle } from 'react-native';
declare type Placement = 'left' | 'center' | 'right';
export interface HeaderChildrenProps {
placement: Placement;
style: StyleProp<ViewStyle>;
children: any;
}
export declare const Children: ({ style, placement, children, }: HeaderChildrenProps) => JSX.Element;
export {};