import { createElement } from "react"; /** * External dependencies */ import { BlurView } from '@react-native-community/blur'; /** * Internal dependencies */ import styles from './style.scss'; const BackgroundView = ({ children }) => { return createElement(BlurView, { style: styles['components-autocomplete__background-blur'], blurType: "prominent", blurAmount: 10 }, children); }; export default BackgroundView; //# sourceMappingURL=background-view.ios.js.map