UNPKG

@wulperstudio/cms

Version:
16 lines (15 loc) 495 B
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; }