You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
496 B

import { ViewProps, StyleProp, TextStyle, ViewStyle } from 'react-native';
import { RneFunctionComponent } from '../helpers';
export interface DividerProps extends ViewProps {
color?: string;
inset?: boolean;
insetType?: 'left' | 'right' | 'middle';
style?: StyleProp<ViewStyle>;
subHeader?: string;
subHeaderStyle?: StyleProp<TextStyle>;
orientation?: 'horizontal' | 'vertical';
width?: number;
}
export declare const Divider: RneFunctionComponent<DividerProps>;