UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

11 lines (10 loc) 430 B
import type { Turn } from './types.js'; export interface TurnCardProps { turn: Turn; /** Reference instant for the relative offset column (typically the conversation start). */ startedAtRef: number; tz?: string; onPlay?: (turnId: string) => void; className?: string; } export declare function TurnCard({ turn, startedAtRef, tz, onPlay, className }: TurnCardProps): import("react/jsx-runtime").JSX.Element;