UNPKG

@progress/kendo-vue-buttons

Version:
35 lines (34 loc) 1.32 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Represents the [Kendo UI for Vue ToolbarSeparator component]({% slug overview_toolbar %}). A separator element for the sub-elements of the Toolbar. * * ```jsx * <template> * <div> * <Toolbar> * <SplitButton * :class="'k-toolbar-split-button'" * :text="'Insert'" * :items="splitItems" * > * </SplitButton> * <ToolbarSeparator /> * <DropDownButton * :text="'Paste'" * :svg-icon="clipboardIcon" * :items="ddItems" * > * </DropDownButton> * </Toolbar> * </div> * </template> * ``` */ declare const ToolbarSeparator: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ToolbarSeparator };