@cmk/fe_utils
Version:
frontend utility library
16 lines (14 loc) • 624 B
text/typescript
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>