chore: Removing some any

This commit is contained in:
Tom Moor
2024-01-05 23:25:05 -05:00
parent 89d905ebb7
commit 140526af06
5 changed files with 10 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ const StyledText = styled(Text)`
`;
export const Preview = styled(Link)`
cursor: ${(props: any) =>
cursor: ${(props: { as?: string }) =>
props.as === "div" ? "default" : "var(--pointer)"};
border-radius: 4px;
box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.3),