Barrel export file for the **Buildings & Infrastructure** icon category, re-exporting 20 individual building and structure-related icon components from their respective modules. ## Key Components | Export | Description | |--------|-------------| | `ArchwayIcon` | Decorative archway structure | | `Bridge01Icon` / `Bridge02Icon` | Bridge structure variants | | `BuildingIcon` / `BuildingsIcon` | Single and multiple building icons | | `BuildingTreeIcon` | Building with tree/nature element | | `CampgroundIcon` | Campground/outdoor site | | `CastleIcon` | Castle or fortified structure | | `ChurchIcon` | Church/religious building | | `FenceIcon` | Fence/boundary structure | | `FortIcon` | Military fort structure | | `GarageIcon` | Garage/vehicle storage | | `HospitalIcon` | Medical facility | | `HotelIcon` / `HotelAltIcon` | Hotel/lodging variants | | `LighthouseIcon` | Lighthouse/coastal structure | | `ParkIcon` | Public park | | `SchoolIcon` | Educational building | | `TerraceIcon` | Terrace/outdoor space | | `WarehouseIcon` | Warehouse/storage facility | ## Usage Example ```typescript import { BuildingIcon, HospitalIcon, SchoolIcon, WarehouseIcon } from './buildings'; // Use in a React component const LocationTypeIcon = ({ type }: { type: string }) => { const icons: Record = { office: BuildingIcon, medical: HospitalIcon, education: SchoolIcon, storage: WarehouseIcon, }; const Icon = icons[type]; return Icon ? : null; }; ```