const ShinyText = ({ text, disabled = false, speed = 5, className = '' }) => { const animationDuration = `${speed}s`; return (
{text}
); }; export default ShinyText; // tailwind.config.js // module.exports = { // theme: { // extend: { // keyframes: { // shine: { // '0%': { 'background-position': '100%' }, // '100%': { 'background-position': '-100%' }, // }, // }, // animation: { // shine: 'shine 5s linear infinite', // }, // }, // }, // plugins: [], // };