Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nburka committed Oct 18, 2024
1 parent f6819dd commit 7ae6a87
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/IconTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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' && (
<span className={styles.iconSize}>24px</span>
)}
{props.icon.formats.includes('24px') &&
props.iconFormat !== '24px' && (
<span className={styles.iconSize}>24px</span>
)}
</div>
</button>
)}
Expand All @@ -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' && (
<span className={styles.iconSize}>24px</span>
)}
{props.icon.formats.includes('24px') &&
props.iconFormat !== '24px' && (
<span className={styles.iconSize}>24px</span>
)}
</div>
</button>
)}
<div className={styles.iconTitle}>
{props.icon.title}
</div>
<div className={styles.iconTitle}>{props.icon.title}</div>
</div>
);
}

0 comments on commit 7ae6a87

Please sign in to comment.