UNPKG

antd-mobile-alita

Version:

基于 React 的移动设计规范实现

19 lines (18 loc) 593 B
import * as React from 'react'; import { FlexPropsType as BasePropsType } from './PropsType'; export interface FlexProps extends BasePropsType { alignContent?: 'start' | 'end' | 'center' | 'between' | 'around' | 'stretch'; onClick?: (e: React.MouseEvent<HTMLDivElement>) => void; prefixCls?: string; className?: string; role?: string; style?: React.CSSProperties; } export default class Flex extends React.Component<FlexProps, any> { static Item: any; static defaultProps: { prefixCls: string; align: string; }; render(): JSX.Element; }