---
title: "Deprecation: #101133 - IconState class"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-101133-1687875352"
source: "Changelog/13.0/Deprecation-101133-IconStateClass.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Deprecation: #101133 - IconState class

See [forge#101133](https://forge.typo3.org/issues/101133)

## Description

The class `\TYPO3\CMS\Core\Type\Icon\IconState` is marked
as deprecated.

## Impact

The class `\TYPO3\CMS\Core\Type\Icon\IconState` will be removed in
TYPO3 v14.0. Passing an instance of this class to
`\TYPO3\CMS\Core\Imaging\IconFactory->getIcon()` will lead to a deprecation
level log entry.

## Affected installations

All installations using the class `\TYPO3\CMS\Core\Type\Icon\IconState`.

## Migration

```php
// Before
$state = \TYPO3\CMS\Core\Type\Icon\IconState::cast(
    \TYPO3\CMS\Core\Type\Icon\IconState::STATE_DEFAULT
);

// After
$state = \TYPO3\CMS\Core\Imaging\IconState::STATE_DEFAULT;
```
