A deprecated React SVG icon component that renders a hotel/building icon. ## Key Components ### `HotelIconProps` | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | CSS class for the SVG element | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `'white'` | Fill color for the icon path | ### `HotelIcon` > **⚠️ Deprecated** — Use icons from `icons-v2-generated` instead. Renders an SVG hotel/building icon with configurable size, color, and className. ## Usage Example ```typescript import { HotelIcon } from './hotel-icon' // Basic usage // Custom size and color ``` ## Migration This component is deprecated. Replace with the equivalent from the generated icon set: ```typescript // ❌ Deprecated import { HotelIcon } from './hotel-icon' // ✅ Preferred import { HotelIcon } from '@/components/icons-v2-generated' ```