From 7ae6a87ae7a0bf16cdad4e7c3539007cbe9c62a9 Mon Sep 17 00:00:00 2001 From: Nick Burka Date: Fri, 18 Oct 2024 09:40:56 -0400 Subject: [PATCH] lint --- src/components/IconTile.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/IconTile.tsx b/src/components/IconTile.tsx index 47d20b96c..f71f8c39f 100644 --- a/src/components/IconTile.tsx +++ b/src/components/IconTile.tsx @@ -37,9 +37,10 @@ export function IconTile(props: IconTileProps) { alt={`${props.icon.title} outline icon`} effect="opacity" /> - {props.icon.formats.includes('24px') && props.iconFormat !== '24px' && ( - 24px - )} + {props.icon.formats.includes('24px') && + props.iconFormat !== '24px' && ( + 24px + )} )} @@ -58,15 +59,14 @@ export function IconTile(props: IconTileProps) { alt={`${props.icon.title} outline icon`} effect="opacity" /> - {props.icon.formats.includes('24px') && props.iconFormat !== '24px' && ( - 24px - )} + {props.icon.formats.includes('24px') && + props.iconFormat !== '24px' && ( + 24px + )} )} -
- {props.icon.title} -
+
{props.icon.title}
); }