@gechiui/components
Version:
UI components for GeChiUI.
18 lines (15 loc) • 322 B
JavaScript
import { createElement } from "@gechiui/element";
/**
* External dependencies
*/
import { View } from 'react-native';
function Disabled(_ref) {
let {
children
} = _ref;
return createElement(View, {
pointerEvents: "none"
}, children);
}
export default Disabled;
//# sourceMappingURL=index.native.js.map