UNPKG

@wordpress/components

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