/* Copyright (C) Click & Push Accessibility, Inc - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited * Proprietary and confidential * Written and maintained by the Click & Push Development team * , January 2022 */ import React, { memo } from "react" import { View, Text, ViewStyle } from "react-native" import { colors } from "../utils/GlobalUtils" const Badge: React.FC<{value: number, positioning: {top?: number, left?: number, right?: number, bottom?: number}}> = ({value, positioning}) => { return ( {value} ) } export default memo(Badge)