UNPKG

@cmk/fe_utils

Version:
15 lines (12 loc) 432 B
import { mdiDockTop } from '@mdi/js' import { appBarPropsSchema } from './appBarPropsRawSchema' import { AppBarWrapper, AppBarWrapperProps } from './AppBarWrapper' import { ElementModel } from '../../componentDefType' export const appBarDef = { type: 'AppBar' as const, props: {}, icon: mdiDockTop, category: 'surface', schema: appBarPropsSchema, component: AppBarWrapper, } satisfies ElementModel<AppBarWrapperProps>