/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Specifies the theme color of the Floating Action Button.. * * The possible values are: * * `primary` (Default)—Applies coloring based on the primary theme color. * * `secondary`—Applies coloring based on the secondary theme color. * * `tertiary`— Applies coloring based on the tertiary theme color. * * `base`— Applies coloring based on the base theme color. * */ export type FloatingActionButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary';