Barrel export file that re-exports all numeric and age-rating icon components from their individual modules into a single entry point. ## Key Components Three icon categories are exported: | Category | Exports | Description | |----------|---------|-------------| | **Age Limit Icons** | `AgeLimit0Icon` – `AgeLimit21Icon` | Content rating badges (0, 3, 6, 10, 12, 13, 16, 17, 18, 21) | | **Dice Icons** | `Dice1Icon` – `Dice6Icon` | Dice face icons representing values 1 through 6 | | **Number Icons** | `Number0Icon` – `Number9Icon` | Standalone digit icons 0–9 | | **Numeral Circle Icons** | `Numer0CircleIcon` – `Numer9CircleIcon` | Digits 0–9 inside a circle shape | | **Numeral Square Icons** | `Numer0SquareIcon` – `Numer9SquareIcon` | Digits 0–9 inside a square shape | ## Usage Example ```typescript import { AgeLimit18Icon, Dice6Icon, Number7Icon, Numer3CircleIcon, Numer3SquareIcon, } from './index'; // Age rating badge // Dice face // Plain digit // Digit in shaped container ``` > **Note:** All icons are sourced from individual modules, keeping each component tree-shakeable. Import only what you need to avoid bundling unused icons.