Some icon tweaks

This commit is contained in:
Gregory Schier
2023-03-30 16:29:14 -07:00
parent 801b29402d
commit 42de045263
3 changed files with 5 additions and 5 deletions

View File

@@ -103,7 +103,7 @@ export const ResponsePane = memo(function ResponsePane({ style, className }: Pro
icon="triangleDown"
className="ml-auto"
size="sm"
iconSize="sm"
iconSize="md"
/>
</Dropdown>
</HStack>

View File

@@ -54,11 +54,11 @@ export const UrlBar = memo(function UrlBar({ id: requestId, url, method, classNa
}
rightSlot={
<IconButton
size="sm"
size="xs"
iconSize="sm"
title="Send Request"
type="submit"
color="custom"
className="!px-2 mr-0.5"
className="w-8 mr-0.5"
icon={loading ? 'update' : 'paperPlane'}
spin={loading}
disabled={loading}

View File

@@ -51,7 +51,7 @@ const _IconButton = forwardRef<HTMLButtonElement, Props>(function IconButton(
'!px-0',
size === 'md' && 'w-9',
size === 'sm' && 'w-8',
size === 'xs' && 'w-7',
size === 'xs' && 'w-6',
)}
size={size}
{...props}