import { css, cx, keyframes } from '@emotion/css' const wave = keyframes` 0% { transform: scaleY(1) } 50% { transform: scaleY(0.2) } 100% { transform: scaleY(1)} ` const animation = css` transform-origin: bottom; animation: ${wave} 1s ease-in-out infinite; ` const delay = ['-100ms', '-500ms', '-1200ms', '-1000ms', '-700ms'] const Wave = ({ playing }: { playing: boolean }) => { return (