fix: styled-components

This commit is contained in:
2023-07-03 20:36:42 -03:00
parent 7c11ff87a6
commit 6f5a0ec34a
3 changed files with 7 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ export const SpendScreen = (): JSX.Element => {
);
};
const SpendScreenContainer = styled.div`
background-color: ${({ theme }: { theme: Theme }) => theme.colors.primary};
const SpendScreenContainer = styled.div<{ theme: Theme }>`
background-color: ${({ theme }) => theme.colors.primary};
height: 100%;
`;