@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
29 lines (28 loc) • 1.05 kB
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 alignment of the FloatingActionButton relative to the viewport or parent element
* ([see example](slug:positioning_floatingactionbutton#toc-alignment)).
*/
export interface FabAlign {
/**
* Specifies the vertical alignment of the FloatingActionButton.
*
* The available options are:
* - `top` (Default)
* - `middle`
* - `bottom`
*/
vertical?: 'top' | 'middle' | 'bottom';
/**
* Specifies the horizontal alignment of the FloatingActionButton.
*
* The available options are:
* - `start`
* - `center`
* - `end` (Default)
*/
horizontal?: 'start' | 'center' | 'end';
}