/** * @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`—Renders the solid variant of the icon. * * `outline`—Renders the outline variant of the icon. * * `duotone`—Renders the duotone variant of the icon. * * Custom variant names are also supported if the icon defines them. */ export type IconVariant = 'solid' | 'outline' | 'duotone' | (string & Record);