@gluestack-ui/core
Version:
Universal UI components for React Native, Expo, and Next.js
14 lines • 346 B
JSX
function Separator(_props) {
return null;
}
Separator.getCollectionNode = function* getCollectionNode(props, _context) {
let rendered = props.children;
yield {
type: 'seperator',
props: props,
rendered,
};
};
Separator.displayName = 'Separator';
export { Separator };
//# sourceMappingURL=Separator.jsx.map