@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
16 lines (15 loc) • 495 B
TypeScript
import React from 'react';
import { BoxProps, TypographyProps } from '@mui/material';
export interface GenerateGroupsProps {
title?: string;
TitleProps?: Omit<TypographyProps, 'children'>;
selectors?: React.ReactNode[];
AddComponent: React.ReactNode;
onClickAdd?: () => void;
initialGroups?: number;
position?: 'right' | 'left';
onChange?: (active: number) => void;
rootProps?: BoxProps;
rootSelectorsProps?: BoxProps;
wrapSelectorProps?: BoxProps;
}