@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
24 lines (23 loc) • 836 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 positions of the FloatingActionButton
* ([see example]({% slug positioning_floatingactionbutton %}#offset)).
*
* @example
* ```typescript
* const offset: FabOffset = { x: '10px', y: '20px' };
* ```
*/
export interface FabOffset {
/**
* Defines the horizontal offset of the FloatingActionButton.
*/
x: string;
/**
* Defines the vertical offset of the FloatingActionButton.
*/
y: string;
}