/** * @license * SPDX-License-Identifier: Apache-2.0 */ import { LayoutGrid, Maximize2, Layers } from 'lucide-react'; // Mały komponent pomocniczy dla pojedynczego wiersza informacji function InfoItem({ icon: Icon, label, className = "" }) { return (
); } export default function App() { const listing = { rooms: 3, area: 59.9, floor: 7 }; return (
); }
