import { UserInfo, ReadOnlyText, Label } from '../styled' import { Text } from '../../../atoms/Text' export const RestaurantInfo = ({ data = {} }) => { return ( <> Información del Restaurante <> {/* */} {data?.storeName} {data?.emailStore} {data?.storeOwner} {data?.storePhone} {data?.NitStore} {data?.ULocation} {data?.Viaprincipal} {data?.addressStore} {data?.banner} {data?.cateStore?.cName} {data?.city?.cName} {data?.department?.dName} {data?.description} {data?.pais?.cName} {data?.siteWeb} {data?.socialRaz} {data?.uPhoNum} ) }