import { styled } from 'styled-components'; export const StyledCursor = styled.span` position: absolute; top: 0; left: calc(100% + 0.25em); width: 15px; height: 100%; background-color: ${({ theme }) => theme.colors.primary}; animation: blinking 1s infinite; `;