import { __ } from '@wordpress/i18n'; import { arrowDown, Icon } from '@wordpress/icons'; import { AnimatePresence, motion } from 'framer-motion'; export const ScrollDownButton = ({ canScrollDown, onClick }) => { return (
{canScrollDown ? ( {__('Scroll down', 'extendify-local')} ) : null}
); };