softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
28 lines • 603 B
JavaScript
// src/components/Draggable/DraggebleItem.tsx
import React from "react";
import Animated from "react-native-reanimated";
function DraggebleItem(props) {
const {
children,
animatedStyles
} = props;
return /* @__PURE__ */ React.createElement(
Animated.View,
{
style: [
animatedStyles,
{
flex: 1,
borderBottomWidth: 0
// borderColor: theme?.divider,
// backgroundColor: theme?.background.primary
}
]
},
children
);
}
export {
DraggebleItem as default
};
//# sourceMappingURL=DraggebleItem.mjs.map