style: audio tab icon

This commit is contained in:
jialin
2024-12-13 13:17:07 +08:00
parent 6e5e195a30
commit 6eff89aca1
+2 -2
View File
@@ -41,12 +41,12 @@ const Playground: React.FC = () => {
{ {
label: intl.formatMessage({ id: 'playground.audio.texttospeech' }), label: intl.formatMessage({ id: 'playground.audio.texttospeech' }),
value: TabsValueMap.Tab1, value: TabsValueMap.Tab1,
icon: <AudioOutlined /> icon: <IconFont type={'icon-audio'}></IconFont>
}, },
{ {
label: intl.formatMessage({ id: 'playground.audio.speechtotext' }), label: intl.formatMessage({ id: 'playground.audio.speechtotext' }),
value: TabsValueMap.Tab2, value: TabsValueMap.Tab2,
icon: <IconFont type={'icon-audio'}></IconFont> icon: <AudioOutlined />
} }
]; ];