I've come across the following snippet of code:
export const ErrorBlur = {
width: '95.8%',
height: '100vh',
backdropFilter: blur('10px'),
backgroundColor: 'rgba(124, 146, 153, 0.29)',
};
However, an error is being thrown:
unanticipated use of blur
Any ideas on how to remedy this syntax error? Appreciate your help.