import type { HTMLAttributes } from 'react'; import { twMerge } from 'tailwind-merge'; type ThreadProps = HTMLAttributes; export const Thread = ({ children, className, ...props }: ThreadProps) => (
{children}
);