const Wave = ({ color, className }: WaveProps): JSX.Element => { return ( ) } interface WaveProps { color: string className?: string } export default Wave