@madeja-studio/telar
Version:
UI component library by Madeja Studio
17 lines (16 loc) • 356 B
JavaScript
;
import { View } from 'react-native';
import tw from "../../tailwind/index.js";
import { jsx as _jsx } from "react/jsx-runtime";
export const Row = ({
children,
style,
...props
}) => {
return /*#__PURE__*/_jsx(View, {
style: [tw`flex flex-row`, style],
...props,
children: children
});
};
//# sourceMappingURL=Row.js.map