Skip to content

Commit

Permalink
Fix Badge import (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok authored May 24, 2024
1 parent 5b33ff0 commit 745d553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Badge/Badge.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from "styled-components";
import { HorizontalDirection } from "@/components";
import { HTMLAttributes, MouseEvent, ReactNode } from "react";
import { IconName } from "@/components/Icon/types";
import { ImageName } from "@/components/Icon/types";
import { Icon } from "@/components/Icon/Icon";
import IconWrapper from "@/components/IconWrapper/IconWrapper";

Expand All @@ -20,7 +20,7 @@ export interface CommonBadgeProps extends HTMLAttributes<HTMLDivElement> {
text: ReactNode;
state?: BadgeState;
size?: BadgeSize;
icon?: IconName;
icon?: ImageName;
iconDir?: HorizontalDirection;
}

Expand Down

0 comments on commit 745d553

Please sign in to comment.