Barrel export file that re-exports all sports and fitness-related icon components from their individual modules into a single entry point. ## Key Components | Export | Description | |--------|-------------| | `AmericanFootballIcon` | American football sport icon | | `ArcheryArrowIcon`, `ArcheryBowIcon`, `ArcheryTargetIcon` | Archery-related icons | | `BaseballIcon`, `BasketballIcon`, `BasketballBasketIcon` | Ball sport icons | | `BikingIcon`, `BowlingIcon`, `BoxingIcon` | Activity sport icons | | `ChessIcon`, `CourtIcon`, `DumbellIcon` | Equipment and venue icons | | `FootballIcon`, `PingpongIcon`, `VolleyballIcon` | Team sport icons | | `Medal01Icon`, `Medal02Icon`, `TrophyIcon` | Achievement/award icons | | `RankingIcon`, `RewardBadgeIcon`, `RewardBadgeCheckIcon`, `RewardBadgeStarIcon` | Ranking and reward icons | | `RunningIcon`, `SwimmingIcon`, `SkippingRopeIcon`, `SnorkelIcon` | Athletic activity icons | | `WhistleIcon` | Sports officiating icon | ## Usage Example ```typescript // Import specific icons as needed import { TrophyIcon, BasketballIcon, Medal01Icon, RunningIcon } from './index'; // Or import all sports icons at once import * as SportsIcons from './index'; // Usage in a React component const SportsPage = () => (
); ```