import { Label } from '@widergy/mobile-ui'; import React from 'react'; import { View } from 'react-native'; import styles from './styles'; interface Props { text: string; color: string; backgroundColor: string; } const BadgeStatus = ({ text, color, backgroundColor }: Props) => ( ); export default BadgeStatus;