Repaired typo

This commit is contained in:
Vins 2024-04-12 16:28:46 +02:00
parent e1cf1ec32b
commit 223f165fd9

View File

@ -46,7 +46,7 @@ export enum ITypoColor {
export default class Typography extends React.Component<IProps, IState> {
public override render(): JSX.Element {
return (
<span
<div
className={classNames(
classes["root"],
classes[this.props.typo],
@ -55,7 +55,7 @@ export default class Typography extends React.Component<IProps, IState> {
)}
title={this.props.title}>
{this.props.children}
</span>
</div>
);
}
}