UNPKG

@kiwicom/smart-faq

Version:

24 lines (19 loc) 445 B
// @flow import * as React from 'react'; import styled from 'styled-components'; import Text from '@kiwicom/nitro/lib/components/Text'; const Wrapper = styled.div` display: flex; justify-content: center; padding-top: 160px; `; const BookingNotFound = () => ( <Wrapper> <Text type="secondary" size="large" t="smartfaq.single_booking_page.booking_not_found" /> </Wrapper> ); export default BookingNotFound;