UNPKG

322 BTypeScriptView Raw
1import type { FC, ReactNode } from 'react';
2import { NativeProps } from '../../utils/native-props';
3export declare type DividerProps = {
4 contentPosition?: 'left' | 'right' | 'center';
5 direction?: 'horizontal' | 'vertical';
6 children?: ReactNode;
7} & NativeProps;
8export declare const Divider: FC<DividerProps>;