Skip to content

Commit

Permalink
🐛 Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelGesenhues committed Feb 6, 2025
1 parent 31f32d4 commit d9941b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const typewriterCursorElement = ({
.typewriter-lastWithContent {
&:after {
animation: ${blinkAnimation} 1s steps(2, start) infinite;
color: ${({ theme }: StyledTypewriterTextProps) => theme.text};
color: ${({ theme }) => (theme as { text: string }).text};
content: '▋';
margin-left: 0.25rem;
opacity: 0.85;
Expand Down

0 comments on commit d9941b6

Please sign in to comment.