import { cn, text } from '../../styles/theme'; import { useGetTransactionToastLabel } from '../hooks/useGetTransactionToastLabel'; import type { TransactionToastLabelProps } from '../types'; export function TransactionToastLabel({ className, }: TransactionToastLabelProps) { const { label } = useGetTransactionToastLabel(); return (

{label}

); }