mirror of
https://github.com/Spythere/spythere-portfolio.git
synced 2026-05-03 13:38:17 +00:00
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
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;
|
|
`;
|