import { ThemeSize } from "../../theme/types.js"; import { ToolbarRootProps, ToolbarUi } from "@soybeanjs/headless/toolbar"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/toolbar/types.d.ts /** * Properties for the Toolbar component. */ interface ToolbarProps extends ToolbarRootProps { /** * Additional class names applied to the root element. */ class?: ClassValue; /** * Visual size of the component. */ size?: ThemeSize; /** * Per-slot class overrides for the component. */ ui?: Partial; } //#endregion export { ToolbarProps };