UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

7 lines 275 B
import React from "react"; import { Image } from "react-native"; export const CometChatStickerBubble = (props) => { const { url, style } = props; return (<Image resizeMode={"cover"} source={{ uri: url }} style={style}/>); }; //# sourceMappingURL=StickersBubble.js.map