@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
19 lines (18 loc) • 745 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the horizontal and vertical offset position of the FloatingActionButton
* ([see example]({% slug positioning_floatingactionbutton %}#toc-offset)).
*/
export interface FabOffset {
/**
* Defines the horizontal offset of the FloatingActionButton.
*/
x: string;
/**
* Defines the vertical offset of the FloatingActionButton.
*/
y: string;
}