fix(TitleAndSubCell): Text components' tag props are set to span to prevent <p> in <p> (#373)

This commit is contained in:
Yusuf Seyrek 2023-08-15 15:21:38 +03:00 committed by GitHub
parent 9c3a6a0482
commit 8df8aa6a12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,10 +12,10 @@ interface Props {
export default function TitleAndSubCell(props: Props) {
return (
<div className={classNames('flex flex-col gap-[0.5]', props.containerClassName)}>
<Text size='xs' className={props.className}>
<Text size='xs' className={props.className} tag='span'>
{props.title}
</Text>
<Text size='xs' className={classNames('text-white/50', props.className)}>
<Text size='xs' className={classNames('text-white/50', props.className)} tag='span'>
{props.sub}
</Text>
</div>