import React, { AllHTMLAttributes, FC } from 'react'; import styles from './styles.module.scss'; import classNames from 'classnames'; type IProps = AllHTMLAttributes & { is_blurred: boolean }; export const BlurWrapper: FC = ({ children, is_blurred }) => (
{children}
);