diff --git a/src/components/buttons/BookConsultationButton.tsx b/src/components/buttons/BookConsultationButton.tsx new file mode 100644 index 0000000..896754c --- /dev/null +++ b/src/components/buttons/BookConsultationButton.tsx @@ -0,0 +1,33 @@ +"use client"; +import ButtonTextStagger from '@/components/button/ButtonTextStagger/ButtonTextStagger'; +import React from 'react'; + +interface BookConsultationButtonProps { + text?: string; + onClick?: () => void; + className?: string; // For additional styling + bgClassName?: string; // For background styling, typically handled by ThemeProvider primaryButtonStyle + textClassName?: string; // For text styling + ariaLabel?: string; +} + +const BookConsultationButton: React.FC = ({ + text = "Book a Consultation", onClick, + className, + bgClassName, + textClassName, + ariaLabel = "Book a consultation call"}) => { + return ( + + ); +}; + +export default BookConsultationButton;