@progress/kendo-vue-common
Version:
Kendo UI for Vue Common Utilities package
17 lines (16 loc) • 684 B
TypeScript
/**
* @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`—The default icon fill mode.
* * `outline`—Renders an outlined version of the icon.
* * `duotone`—Renders a two-tone version of the icon.
*/
export type IconFillMode = 'solid' | 'outline' | 'duotone';