@wordpress/components
Version:
UI components for WordPress.
25 lines (21 loc) • 521 B
JavaScript
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