chore: title文本包一层,方便外部样式覆盖

This commit is contained in:
siyue.ld 2021-08-30 09:59:53 +08:00
parent df0328ddb1
commit 8a5b8e6568

View File

@ -61,7 +61,7 @@ export class Title extends Component<{ title: TitleContent; className?: string;
onClick={this.handleClick}
>
{icon ? <b className="lc-title-icon">{icon}</b> : null}
{title.label ? intl(title.label) : null}
{title.label ? <span className="lc-title-txt">{intl(title.label)}</span> : null}
{tip}
</span>
);