/**
 * @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 fill mode of the Icon.
 *
 * The possible values are:
 * * `solid`&mdash;The default icon fill mode.
 * * `outline`&mdash;Renders an outlined version of the icon.
 * * `duotone`&mdash;Renders a two-tone version of the icon.
 */
export type IconFillMode = 'solid' | 'outline' | 'duotone';
