fx-form-widget
Version:
15 lines (14 loc) • 404 B
TypeScript
import { FC, ReactNode } from "react";
import { LineStyle } from "../separator";
import { RowContainerProps } from "../rowContainerGroup/shard";
import './index.less';
export interface GroupProps {
label?: ReactNode;
lineStyle?: LineStyle;
values?: RowContainerProps[];
border?: boolean;
column?: number;
wid?: string;
}
declare const Group: FC<GroupProps>;
export default Group;