feat(ui): bump fontSize in fallback compoennt

This commit is contained in:
psychedelicious 2024-01-03 21:17:30 +11:00 committed by Kent Keirsey
parent 8a6f03cd46
commit 6bfe994622

View File

@ -65,7 +65,11 @@ export const IAINoContentFallback = memo((props: IAINoImageFallbackProps) => {
return (
<Flex sx={styles} {...rest}>
{icon && <Icon as={icon} boxSize={boxSize} opacity={0.7} />}
{props.label && <InvText textAlign="center">{props.label}</InvText>}
{props.label && (
<InvText textAlign="center" fontSize="md">
{props.label}
</InvText>
)}
</Flex>
);
});