UNPKG

@cmk/fe_utils

Version:
16 lines (14 loc) 486 B
import { mdiRectangleOutline } from '@mdi/js' import { boxPropsSchema } from './boxPropsRawSchema' import { BoxWrapper, BoxWrapperProps } from './boxWrapper' import { ElementModel } from '../../componentDefType' import { FC } from 'react' export const boxEditorComponentDef = { type: 'Box' as const, props: { }, icon: mdiRectangleOutline, category: 'layout', component: BoxWrapper as FC<BoxWrapperProps>, schema: boxPropsSchema, } satisfies ElementModel<BoxWrapperProps>