import { AnimatePresence } from 'framer-motion'; import { ComponentProps, ElementRef, forwardRef } from 'react'; import { MotionBadge } from '../../../../common/components/molecules/MotionBadge/MotionBadge'; import * as React from 'react'; export const BadgeCell = forwardRef< ElementRef, { value: ComponentProps['children']; props: ComponentProps; } >(({ value, props }, ref) => { return ( {value} ); }); BadgeCell.displayName = 'BadgeCell';