UNPKG

@td-design/react-native

Version:

react-native UI组件库

19 lines 488 B
import React, { memo } from 'react'; import { useTheme } from '@shopify/restyle'; import Box from '../box'; const WhiteSpace = _ref => { let { size = 'x2', backgroundColor = 'transparent' } = _ref; const theme = useTheme(); return /*#__PURE__*/React.createElement(Box, { height: theme.spacing[size], style: { backgroundColor } }); }; WhiteSpace.displayName = 'WhiteSpace'; export default /*#__PURE__*/memo(WhiteSpace); //# sourceMappingURL=index.js.map