pl-fe: change status icons size

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-09-06 19:07:32 +02:00
parent 1421645d19
commit abac03f51f
3 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ const Account = ({
<>
<Text tag='span' theme='muted' size='sm'>&middot;</Text>
<Icon className='h-5 w-5 text-gray-700 dark:text-gray-600' src={require('@tabler/icons/outline/pencil.svg')} />
<Icon className='h-4 w-4 text-gray-700 dark:text-gray-600' src={require('@tabler/icons/outline/pencil.svg')} />
</>
) : null}

View File

@ -25,7 +25,7 @@ const StatusLanguagePicker: React.FC<IStatusLanguagePicker> = ({ status, showLab
if (!status.contentMapHtml || Object.keys(status.contentMapHtml).length < 2) return null;
const icon = <Icon className='h-5 w-5 text-gray-700 dark:text-gray-600' src={require('@tabler/icons/outline/language.svg')} />;
const icon = <Icon className='h-4 w-4 text-gray-700 dark:text-gray-600' src={require('@tabler/icons/outline/language.svg')} />;
return (
<>

View File

@ -38,7 +38,7 @@ const StatusTypeIcon: React.FC<IStatusTypeIcon> = ({ status }) => {
<>
<Text tag='span' theme='muted' size='sm'>&middot;</Text>
<Icon title={message ? intl.formatMessage(message) : undefined} className='h-5 w-5 text-gray-700 dark:text-gray-600' src={icon} />
<Icon title={message ? intl.formatMessage(message) : undefined} className='h-4 w-4 text-gray-700 dark:text-gray-600' src={icon} />
</>
);
};