/**
 * @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 variant of the SVG Icon.
 *
 * The possible values are:
 * * `solid`&mdash;Renders a filled (solid) version of the icon.
 * * `outline`&mdash;Renders an outlined version of the icon.
 * * `duotone`&mdash;Renders a two-tone version of the icon.
 */
export type IconVariant = 'solid' | 'outline' | 'duotone';
