import React from 'react'; interface SparkTextProps { text: string; } const sparkTextStyle: React.CSSProperties = { textShadow: '0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.5)', animation: 'sparkle 1s infinite' }; const SparkText: React.FC = ({ text }) => { return ( <> {text} ); }; export default SparkText;