PluginProbe
Extendify / 3.1.5
Extendify v3.1.5
3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 All 126 releases
extendify / src / Launch / components / PageSelectButtonPlaceholder.jsx

PageSelectButtonPlaceholder.jsx in Extendify 3.1.5, at src/Launch/components/PageSelectButtonPlaceholder.jsx

18 lines 400 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { motion } from 'framer-motion';
2
3 export const PageSelectButtonPlaceholder = () => {
4 return (
5 <motion.div
6 className={'rounded-sm border border-gray-100'}
7 animate={{ opacity: [0.9, 0.1, 0.9] }}
8 transition={{
9 duration: 3,
10 repeat: Infinity,
11 ease: 'easeInOut',
12 }}
13 >
14 <div className="h-12 w-full grow overflow-hidden rounded-sm bg-gray-100" />
15 </motion.div>
16 );
17 };
18