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