native-base
Version:
Essential cross-platform UI components for React Native
14 lines (13 loc) • 490 B
TypeScript
import type { CustomProps, SpaceType } from '../../../components/types';
import type { InterfaceBoxProps } from '../../primitives/Box/types';
export interface InterfaceDividerProps extends InterfaceBoxProps<IDividerProps> {
/**
* The orientation of the divider.
*/
orientation?: 'vertical' | 'horizontal';
/**
* The thickness of the divider.
*/
thickness?: SpaceType;
}
export declare type IDividerProps = InterfaceDividerProps & CustomProps<'Divider'>;