import * as React from 'react'; import { ElementRef, forwardRef } from 'react'; import { Image } from '@ballerine/ui'; import { ExtractCellProps } from '@ballerine/blocks'; export const ImageCell = forwardRef, ExtractCellProps<'image'>>( ({ value, props }, ref) => { return ; }, ); ImageCell.displayName = 'ImageCell';