Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
beanpuppy committed Jan 31, 2024
1 parent d342443 commit 54729c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Banner/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
faInfoCircle,
} from "@fortawesome/pro-regular-svg-icons";
import {useTheme} from "styled-components";
import { TypographySize } from "../../theming/global-theme.interface";
import {TypographySize} from "../../theming/global-theme.interface";

export interface BannerProps {
/**
Expand Down Expand Up @@ -82,7 +82,7 @@ const Banner = (props: BannerProps) => {
return (
<StyledBanner variant={variant} data-cy={props["data-cy"]}>
<Icon
icon={icon || variantMap[variant] as IconProp}
icon={icon || (variantMap[variant] as IconProp)}
color={theme.extended.support[`${variant}Dark`]}
/>
<MainContentContainer>
Expand Down

0 comments on commit 54729c5

Please sign in to comment.