fix(ui): fix tab icon sizes

This commit is contained in:
psychedelicious 2023-05-12 17:53:59 +10:00
parent 14070d674e
commit 35e0863bdb

View File

@ -45,12 +45,12 @@ export interface InvokeTabInfo {
const tabs: InvokeTabInfo[] = [
{
id: 'txt2img',
icon: <Icon as={GoTextSize} sx={{ boxSize: 5 }} />,
icon: <Icon as={GoTextSize} sx={{ boxSize: 6 }} />,
content: <TextToImageTab />,
},
{
id: 'img2img',
icon: <Icon as={FaImage} sx={{ boxSize: 5 }} />,
icon: <Icon as={FaImage} sx={{ boxSize: 6 }} />,
content: <ImageTab />,
},
{