New to KendoReact? Learn about KendoReact Free.
IconVariant
Updated on May 18, 2026
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.
type IconVariant = "solid" | "outline" | "duotone" | string [intersected](https://www.typescriptlang.org/docs/handbook/advanced-types.html#intersection-types) with Record<never>;