import { Text, View } from "@flip.id/ui-kit"; import * as React from "react"; import type { IBadgePropsNew } from "./types"; const BadgeVA = (props: IBadgePropsNew) => { return ( {props.label !== "" && ( {props.label} )} ); }; export default BadgeVA;