softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
18 lines • 548 B
JavaScript
// src/components/Badge.tsx
import React from "react";
import { View, Text } from "react-native";
var UnreadMessagesBadge = (props) => {
const { label } = props;
return /* @__PURE__ */ React.createElement(View, { style: {
height: 25,
width: 25,
borderRadius: 25,
backgroundColor: "lightblue",
alignItems: "center",
justifyContent: "center"
} }, /* @__PURE__ */ React.createElement(Text, { style: { color: "white", fontWeight: "bold" } }, label));
};
export {
UnreadMessagesBadge
};
//# sourceMappingURL=Badge.mjs.map