Barrel export file for the **clothing and accessories** icon component collection, re-exporting 24 individual SVG icon components from their respective modules. ## Key Components | Export | Module | |--------|--------| | `ApronIcon` | `./apron-icon` | | `BowTieIcon` | `./bow-tie-icon` | | `ChefHatIcon` | `./chef-hat-icon` | | `FootprintsIcon` | `./footprints-icon` | | `Glasses01Icon` | `./glasses-01-icon` | | `Glasses02Icon` | `./glasses-02-icon` | | `GloveSmittenIcon` | `./glove-smitten-icon` | | `HangerIcon` | `./hanger-icon` | | `HatIcon` | `./hat-icon` | | `HeelsChunkyIcon` | `./heels-chunky-icon` | | `HeelsHighIcon` | `./heels-high-icon` | | `LifeVestIcon` | `./life-vest-icon` | | `MustacheIcon` | `./mustache-icon` | | `PantsIcon` | `./pants-icon` | | `ShoesIcon` / `ShoesRunIcon` | `./shoes-icon` / `./shoes-run-icon` | | `SkateBootsIcon` | `./skate-boots-icon` | | `SocksIcon` / `StockingsIcon` | `./socks-icon` / `./stockings-icon` | | `TankTopIcon` / `TankTopNumberIcon` | `./tank-top-icon` / `./tank-top-number-icon` | | `TieIcon` / `TShirtIcon` | `./tie-icon` / `./t-shirt-icon` | | `UnderpantsIcon` | `./underpants-icon` | ## Usage Example ```typescript import { ChefHatIcon, TShirtIcon, ShoesRunIcon, HangerIcon, } from './clothing-icons'; // Use in a React component const OutfitPanel = () => (
); ```