{-# OPTIONS --safe --cubical #-}
module Bridged.Data.Empty where

open import Cubical.Foundations.Prelude
open import Data.Empty public using (; ⊥-elim)
import Cubical.Data.Empty as 🧊

🧊⊥-elim :  {} {A : Type }  🧊.⊥  A
🧊⊥-elim ()

isProp⊥ : isProp 
isProp⊥ ()

isSet⊥ : isSet 
isSet⊥ = isProp→isSet isProp⊥