я обновил стилизованные компоненты с версии 4 до 5, и возникла проблема с тестами:
TypeError: Cannot read property 'large' of undefined
Мой код:
export const Title = styled(FormattedTypography).attrs(() => ({
component: 'span',
fontWeight: 'bold',
fontFamily: 'decorative',
fontSize: 'display2',
}))`
margin-bottom: ${(props) => props.theme.spacing.large};
text-align: center;
`;
Был ли синтаксис изменен или что-то вроде этого ? Я не могу найти информацию.