import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IIconElementProps` interface. * * @public */ export interface IIconElementProps extends IDisableableProps, IAppearanceableProps, ISizeableProps, IVariantableProps { data: string; angel: number; inline: boolean; } //# sourceMappingURL=IIconElementProps.d.ts.map