antd-mobile-alita
Version:
基于 React 的移动设计规范实现
16 lines (15 loc) • 444 B
TypeScript
import * as React from 'react';
import { CheckboxPropsType } from './PropsType';
export interface AgreeItemPropsType extends CheckboxPropsType {
prefixCls?: string;
className?: string;
name?: string;
wrapLabel?: boolean;
style?: React.CSSProperties;
}
export default class AgreeItem extends React.Component<AgreeItemPropsType, any> {
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element;
}