@gulibs/vgrove-ui
Version:
VGrove UI component library built with HeroUI and React
12 lines • 504 B
TypeScript
import { type PropsWithChildren } from "react";
export type FormGroupGap = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 8 | 10 | 12 | 16 | 20 | 24;
export interface FormGroupProps extends PropsWithChildren {
direction?: "vertical" | "horizontal";
gap?: FormGroupGap;
isGrid?: boolean;
className?: string;
/** 网格列数 (仅当 isGrid 为 true 时有效) */
columns?: 1 | 2 | 3 | 4 | 5 | 6 | 12;
}
export declare const FormGroup: React.FC<FormGroupProps>;
//# sourceMappingURL=FormGroup.d.ts.map