PHP 8.2.31
Preview: ScrollDownButton.jsx Size: 1.10 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Agent/components/ScrollDownButton.jsx

import { __ } from '@wordpress/i18n';
import { arrowDown, Icon } from '@wordpress/icons';
import { AnimatePresence, motion } from 'framer-motion';

export const ScrollDownButton = ({ canScrollDown, onClick }) => {
	return (
		<div className="pointer-events-none sticky bottom-1 flex h-8 items-center justify-center">
			<AnimatePresence>
				{canScrollDown ? (
					<motion.button
						key="scroll-down"
						initial={{ opacity: 0 }}
						animate={{ opacity: 1 }}
						exit={{ opacity: 0 }}
						transition={{ duration: 0.2, exit: { duration: 0 } }}
						onClick={onClick}
						type="button"
						className="pointer-events-auto flex h-fit items-center justify-center gap-2 whitespace-nowrap rounded-full border border-gray-500 bg-white/90 p-1 text-sm font-medium text-design-main shadow-lg transition-colors hover:bg-gray-100 focus-visible:ring-design-main disabled:pointer-events-none"
					>
						<Icon fill="currentColor" icon={arrowDown} size={20} />
						<span className="sr-only">
							{__('Scroll down', 'extendify-local')}
						</span>
					</motion.button>
				) : null}
			</AnimatePresence>
		</div>
	);
};

Directory Contents

Dirs: 5 × Files: 13

Name Size Perms Modified Actions
buttons DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
layouts DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
messages DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
redirects DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
__tests__ DIR
- drwxr-xr-x 2026-04-28 02:40:01
Edit Download
6.98 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
6.07 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download
2.94 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
1.28 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download
8.77 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
872 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
14.88 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
6.03 KB lrw-r--r-- 2026-04-09 23:45:00
Edit Download
5.36 KB lrw-r--r-- 2026-03-19 23:35:18
Edit Download
1.04 KB lrw-r--r-- 2026-03-05 22:57:38
Edit Download
1.85 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
1.10 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
876 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).