@theoplayer/react-native-ui
Version:
A React Native UI for @theoplayer/react-native
16 lines (15 loc) • 384 B
JavaScript
import { View } from 'react-native';
import React from 'react';
/**
* A spacer that can be used with the control bar to space out components left and right.
*/
import { jsx as _jsx } from "react/jsx-runtime";
export const Spacer = () => {
return /*#__PURE__*/_jsx(View, {
pointerEvents: 'none',
style: {
flexGrow: 1
}
});
};
//# sourceMappingURL=Spacer.js.map