GodUIGodUI
109Follow on X

Morphing Dialog

tsx
import {MorphingDialog,MorphingDialogTrigger,MorphingDialogContent,MorphingDialogClose,} from "@/components/godui/morphing-dialog";export function MorphingDialogDemo() {return (  <MorphingDialog>    <MorphingDialogTrigger className="w-64 rounded-2xl border p-4">      <div className="font-semibold">Aurora Sessions</div>    </MorphingDialogTrigger>    <MorphingDialogContent className="w-[28rem] rounded-2xl p-5">      <div className="text-lg font-semibold">Aurora Sessions</div>      <MorphingDialogClose />    </MorphingDialogContent>  </MorphingDialog>);}