From 5ea17d2d0538de12a6a824c9c2a49a99e457b130 Mon Sep 17 00:00:00 2001 From: Samip B Thapa Date: Thu, 29 Aug 2024 11:54:40 +0545 Subject: [PATCH] task: Ensure image corners are rounded consistently --- src/components/InfoGraphicSection.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/components/InfoGraphicSection.tsx b/src/components/InfoGraphicSection.tsx index 0ba4723c..57d02f76 100644 --- a/src/components/InfoGraphicSection.tsx +++ b/src/components/InfoGraphicSection.tsx @@ -52,15 +52,17 @@ export const InfoGraphicSection = (props: InfoGraphicProps) => { const renderGraphicContent = () => { if ('image' in props) { return ( - {props.image.alt +
+ {props.image.alt +
); } else if ('component' in props) { return props.component;