<template>
  <div class="done-booking-details">
    <h3 class="t18 tw-mb-[15px]">{{$t('Booking Details')}}</h3>
    <DoneBookingInfoItem :info="info" :orderStatus="orderStatus" :totalPrice="totalPrice"></DoneBookingInfoItem>
  </div>
</template>
<script>
import DoneBookingInfoItem from "@/components/service/DoneBookingInfoItem";
export default {
  components: {
    DoneBookingInfoItem,
  },
  props: {
    info: {
      type: Object,
    },
    orderStatus: {
      type: Object
    },
    totalPrice: {
      type: Number
    },
  },
};
</script>
<style lang="scss" scoped>

</style>