mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
#591 - server-providers
This commit is contained in:
10
resources/js/components/form-successful.tsx
Normal file
10
resources/js/components/form-successful.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
import { CheckIcon } from 'lucide-react';
|
||||
import { Transition } from '@headlessui/react';
|
||||
|
||||
export default function FormSuccessful({ successful }: { successful: boolean }) {
|
||||
return (
|
||||
<Transition show={successful} enter="transition ease-in-out" enterFrom="opacity-0" leave="transition ease-in-out" leaveTo="opacity-0">
|
||||
<CheckIcon />
|
||||
</Transition>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user