refactor: update common input and text component

This commit is contained in:
Nam Doan
2025-12-03 22:10:07 +07:00
parent efe48a200f
commit f3fb70d073
2 changed files with 19 additions and 1 deletions
@@ -12,7 +12,7 @@ export default function VtText({
const props = nodes.config || {}
return (
<span className={props?.className ?? ""}>
{props?.label && <span>{props.label}</span>}
{props?.label ?? ""}
</span>
)
}