react-native-elements
Version:
React Native Elements & UI Toolkit
15 lines (14 loc) • 529 B
TypeScript
import React from 'react';
import { ViewProps } from 'react-native';
import { Theme } from '../config/theme';
export declare type DividerProps = ViewProps & {
style?: object | any[];
theme?: Theme;
};
declare const Divider: React.FunctionComponent<DividerProps>;
export { Divider };
declare const _default: React.FunctionComponent<Omit<ViewProps & {
style?: object | any[];
theme?: Partial<import("../config/theme").FullTheme>;
}, keyof import("../config/ThemeProvider").ThemeProps<T>>>;
export default _default;