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.
36 lines
1.3 KiB
36 lines
1.3 KiB
import React from 'react';
|
|
import { ViewProps, StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
import { RneFunctionComponent } from '../helpers';
|
|
export declare type DividerProps = ViewProps & {
|
|
color?: string;
|
|
inset?: boolean;
|
|
insetType?: 'left' | 'right' | 'middle';
|
|
style?: StyleProp<ViewStyle>;
|
|
subHeader?: string;
|
|
subHeaderStyle?: StyleProp<TextStyle>;
|
|
orientation?: 'horizontal' | 'vertical';
|
|
width?: number;
|
|
};
|
|
declare const Divider: RneFunctionComponent<DividerProps>;
|
|
export { Divider };
|
|
declare const _default: React.FunctionComponent<Omit<ViewProps & {
|
|
color?: string;
|
|
inset?: boolean;
|
|
insetType?: "left" | "right" | "middle";
|
|
style?: StyleProp<ViewStyle>;
|
|
subHeader?: string;
|
|
subHeaderStyle?: StyleProp<TextStyle>;
|
|
orientation?: "horizontal" | "vertical";
|
|
width?: number;
|
|
} & Partial<import("../config").ThemeProps<DividerProps>>, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<ViewProps & {
|
|
color?: string;
|
|
inset?: boolean;
|
|
insetType?: "left" | "right" | "middle";
|
|
style?: StyleProp<ViewStyle>;
|
|
subHeader?: string;
|
|
subHeaderStyle?: StyleProp<TextStyle>;
|
|
orientation?: "horizontal" | "vertical";
|
|
width?: number;
|
|
} & Partial<import("../config").ThemeProps<DividerProps>>>;
|
|
export default _default;
|