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,
MorphingDialogTitle,
MorphingDialogImage,
MorphingDialogSubtitle,
MorphingDialogClose,
MorphingDialogDescription,
MorphingDialogContainer,
} from '@/components/core/morphing-dialog';
import { PlusIcon } from 'lucide-react';
export function MorphingDialogBasicOne() {
return (
<MorphingDialog
transition={{
type: 'spring',
bounce: 0.05,
duration: 0.25,
}}
>
<MorphingDialogTrigger
style={{
borderRadius: '12px',
}}
className='flex max-w-[270px] flex-col overflow-hidden border border-zinc-950/10 bg-white dark:border-zinc-50/10 dark:bg-zinc-900'
>
<MorphingDialogImage
src='/eb-27-lamp-edouard-wilfrid-buquet.jpg'
alt='A desk lamp designed by Edouard Wilfrid Buquet in 1925. It features a double-arm design and is made from nickel-plated brass, aluminium and varnished wood.'
className='h-48 w-full object-cover'
/>
<div className='flex grow flex-row items-end justify-between px-3 py-2'>
<div>
<MorphingDialogTitle className='text-zinc-950 dark:text-zinc-50'>
EB27
</MorphingDialogTitle>
<MorphingDialogSubtitle className='text-zinc-700 dark:text-zinc-400'>
Edouard Wilfrid Buquet
</MorphingDialogSubtitle>
</div>
<button
type='button'
className='relative ml-1 flex h-6 w-6 shrink-0 scale-100 select-none appearance-none items-center justify-center rounded-lg border border-zinc-950/10 text-zinc-500 transition-colors hover:bg-zinc-100 hover:text-zinc-800 focus-visible:ring-2 active:scale-[0.98] dark:border-zinc-50/10 dark:bg-zinc-900 dark:text-zinc-500 dark:hover:bg-zinc-800 dark:hover:text-zinc-50 dark:focus-visible:ring-zinc-500'
aria-label='Open dialog'
>
<PlusIcon size={12} />
</button>
</div>
</MorphingDialogTrigger>
<MorphingDialogContainer>
<MorphingDialogContent
style={{
borderRadius: '24px',
}}
className='pointer-events-auto relative flex h-auto w-full flex-col overflow-hidden border border-zinc-950/10 bg-white dark:border-zinc-50/10 dark:bg-zinc-900 sm:w-[500px]'
>
<MorphingDialogImage
src='/eb-27-lamp-edouard-wilfrid-buquet.jpg'
alt='A desk lamp designed by Edouard Wilfrid Buquet in 1925. It features a double-arm design and is made from nickel-plated brass, aluminium and varnished wood.'
className='h-full w-full'
/>
<div className='p-6'>
<MorphingDialogTitle className='text-2xl text-zinc-950 dark:text-zinc-50'>
EB27
</MorphingDialogTitle>
<MorphingDialogSubtitle className='text-zinc-700 dark:text-zinc-400'>
Edouard Wilfrid Buquet
</MorphingDialogSubtitle>
<MorphingDialogDescription
disableLayoutAnimation
variants={{
initial: { opacity: 0, scale: 0.8, y: 100 },
animate: { opacity: 1, scale: 1, y: 0 },
exit: { opacity: 0, scale: 0.8, y: 100 },
}}
>
<p className='mt-2 text-zinc-500 dark:text-zinc-500'>
Little is known about the life of Édouard-Wilfrid Buquet. He was
born in France in 1866, but the time and place of his death is
unfortunately a mystery.
</p>
<p className='text-zinc-500'>
Research conducted in the 1970s revealed that he’d designed the
“EB 27” double-arm desk lamp in 1925, handcrafting it from
nickel-plated brass, aluminium and varnished wood.
</p>
<a
className='mt-2 inline-flex text-zinc-500 underline'
href='https://www.are.na/block/12759029'
target='_blank'
rel='noopener noreferrer'
>
Are.na block
</a>
</MorphingDialogDescription>
</div>
<MorphingDialogClose className='text-zinc-50' />
</MorphingDialogContent>
</MorphingDialogContainer>
</MorphingDialog>
);
}