import { cn, text } from '../../styles/theme'; import { useGetTransactionStatusLabel } from '../hooks/useGetTransactionStatusLabel'; import type { TransactionStatusLabelProps } from '../types'; export function TransactionStatusLabel({ className, }: TransactionStatusLabelProps) { const { label, labelClassName } = useGetTransactionStatusLabel(); return (

{label}

); }