'use client' import React from 'react' interface PulsatingButtonProps { text: string pulseColor: string backgroundColor: string textColor: string animationDuration: string buttonWidth: string buttonHeight: string } export const PulsatingButton: React.FC = ({ text, pulseColor, backgroundColor, textColor, animationDuration, buttonWidth, buttonHeight, }) => { const pulseKeyframes = { '--tw-pulse-color': pulseColor, 'animation': `pulse ${animationDuration} linear infinite`, } return (
) } export default PulsatingButton