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