OpeningHours

Inhalt

Öffnungszeiten-Anzeige als Tabelle. Hebt den aktuellen Wochentag hervor.

Live Demo

MontagRuhetag
Dienstag11:00 – 14:00, 17:00 – 22:00
Mittwoch(heute)11:00 – 14:00, 17:00 – 22:00
Donnerstag11:00 – 14:00, 17:00 – 22:00
Freitag11:00 – 14:00, 17:00 – 23:00
Samstag12:00 – 23:00
Sonntag12:00 – 22:00

Props / API

PropTypPflichtDefaultBeschreibung
hoursHourEntry[]JaArray mit {day, time, closed?}
highlightTodaybooleanNeintrueAktuellen Tag hervorheben
classNamestringNeinZusätzliche CSS-Klassen

Code-Beispiel

<OpeningHours
  hours={[
    { day: 'Montag', time: 'Ruhetag', closed: true },
    { day: 'Dienstag', time: '11:00 – 14:00, 17:00 – 22:00' },
    { day: 'Mittwoch', time: '11:00 – 14:00, 17:00 – 22:00' },
  ]}
/>