UNPKG

@cmk/fe_utils

Version:
16 lines (14 loc) 624 B
import { mdiRectangleOutline } from '@mdi/js' import { ElementModel } from '../../componentDefType' import { NavContainerWrapper } from './NavigationContainerWrapper' import { NavContainerComponentPropertys } from '../../componentProperty' import { navigationContainerPropsSchema } from './navigationContainerPropsRawSchema' export const navigationContainerDef = { type: 'NavContainer' as const, props: {}, icon: mdiRectangleOutline, category: 'navigation', schema: navigationContainerPropsSchema, component: NavContainerWrapper, renderType: 'custom', } satisfies ElementModel<NavContainerComponentPropertys>