antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
9 lines (8 loc) • 328 B
TypeScript
import React, { FC } from 'react';
import { NativeProps } from 'antd-mobile/es/utils/native-props';
export declare type DividerProps = {
contentPosition?: 'left' | 'right' | 'center';
direction?: 'horizontal' | 'vertical';
children?: React.ReactNode;
} & NativeProps;
export declare const Divider: FC<DividerProps>;