Morphing Dialog
Morphing Dialog is a React and Tailwind CSS text component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
text
What it is
Morphing Dialog is a React and Tailwind CSS text component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Four free copies a week. No card.
Needs
npm i lucide-react
Licence
This component comes from Motion Primitives and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Morphing Dialog
import {
MorphingDialog,
MorphingDialogTrigger,
MorphingDialogContent,
MorphingDialogClose,
MorphingDialogImage,
MorphingDialogContainer,
} from '@/components/core/morphing-dialog';
import { XIcon } from 'lucide-react';
export function MorphingDialogBasicImage() {
return (
<MorphingDialog
transition={{
duration: 0.3,
ease: 'easeInOut',
}}
>
<MorphingDialogTrigger>
<MorphingDialogImage
src='https://64.media.tumblr.com/a56381366ceaab29b760aabe5e88df07/f3b5e9af4d3103f3-97/s2048x3072/caec6beeee2cbeb80b05e88c917b187926749703.jpg'
alt='Sony Style Store in the Sony Center complex - Berlin, Germany (2000)'
className='max-w-xs rounded-[4px]'
/>
</MorphingDialogTrigger>
<MorphingDialogContainer>
<MorphingDialogContent className='relative'>
<MorphingDialogImage
src='https://64.media.tumblr.com/a56381366ceaab29b760aabe5e88df07/f3b5e9af4d3103f3-97/s2048x3072/caec6beeee2cbeb80b05e88c917b187926749703.jpg'
alt='Sony Style Store in the Sony Center complex - Berlin, Germany (2000)'
className='h-auto w-full max-w-[90vw] rounded-[4px] object-cover lg:h-[90vh]'
/>
</MorphingDialogContent>
<MorphingDialogClose
className='fixed right-6 top-6 h-fit w-fit rounded-full bg-white p-1'
variants={{
initial: { opacity: 0 },
animate: {
opacity: 1,
transition: { delay: 0.3, duration: 0.1 },
},
exit: { opacity: 0, transition: { duration: 0 } },
}}
>
<XIcon className='h-5 w-5 text-zinc-500' />
</MorphingDialogClose>
</MorphingDialogContainer>
</MorphingDialog>
);
}