import { Text } from "theme-ui" import { keyframes } from '@emotion/react' const flashing = keyframes({ from: { opacity: 0 }, '50%': { opacity: 1 }, to: { opacity: 0 } }) export default function Dot() { return ( ) }