UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

26 lines (18 loc) 580 B
import { type PropType, type SlotsType } from 'vue' export type TBottomAppbarActionButtonShape = 'square' | 'rounded' export class BottomAppbarBase { public static readonly propsShared = { actionButtonShape: { type: String as PropType<TBottomAppbarActionButtonShape>, default: 'rounded' }, enableElevation: { type: Boolean as PropType<boolean>, default: false }, } public static readonly slotsShared = {} as SlotsType<{ default: void 'action-button': void }> }