rename class to className

This commit is contained in:
2024-10-14 17:50:55 +08:00
parent f5d43ec4b9
commit 1c3c94bae4
9 changed files with 173 additions and 173 deletions

View File

@@ -80,9 +80,9 @@ export default function TTSButton(props: TTSProps) {
}}
>
{generating ? (
<span class="loading loading-dots loading-xs"></span>
<span className="loading loading-dots loading-xs"></span>
) : (
<SpeakerWaveIcon class="h-4 w-4" />
<SpeakerWaveIcon className="h-4 w-4" />
)}
</button>
);