import { ThemeSize } from "../../theme/types.js"; import { MenuUi } from "@soybeanjs/headless/menu"; import { AlignSide, ClassValue } from "@soybeanjs/headless/types"; //#region src/components/menu/types.d.ts /** * Properties for the MenuUiBase component. */ interface MenuUiBaseProps { /** * class of menu popup */ class?: ClassValue; /** * Visual size of the component. */ size?: ThemeSize; /** * Per-slot class overrides for the component. */ ui?: Partial; /** * Indicator position. */ indicatorPosition?: AlignSide; } //#endregion export { MenuUiBaseProps };