{"version":3,"sources":["../../src/components/Badge.tsx"],"sourcesContent":["import React from \"react\"\r\nimport { View, Text } from \"react-native\";\r\n\r\ntype BadgeProps = {\r\n  label: string | number\r\n}\r\n\r\nexport const UnreadMessagesBadge = (props: BadgeProps) => {\r\n\r\n  const { label } = props;\r\n\r\n  return (\r\n    <View style={{\r\n      height: 25,\r\n      width: 25,\r\n      borderRadius: 25,\r\n      backgroundColor: 'lightblue',\r\n      alignItems: 'center',\r\n      justifyContent: 'center'\r\n    }}>\r\n      <Text style={{ color: 'white', fontWeight: 'bold' }}>{label}</Text>\r\n    </View>\r\n  )\r\n\r\n}"],"mappings":";AAAA,OAAO,WAAW;AAClB,SAAS,MAAM,YAAY;AAMpB,IAAM,sBAAsB,CAAC,UAAsB;AAExD,QAAM,EAAE,MAAM,IAAI;AAElB,SACE,oCAAC,QAAK,OAAO;AAAA,IACX,QAAQ;AAAA,IACR,OAAO;AAAA,IACP,cAAc;AAAA,IACd,iBAAiB;AAAA,IACjB,YAAY;AAAA,IACZ,gBAAgB;AAAA,EAClB,KACE,oCAAC,QAAK,OAAO,EAAE,OAAO,SAAS,YAAY,OAAO,KAAI,KAAM,CAC9D;AAGJ;","names":[]}