Skip to content

Commit

Permalink
fix: storybook lint
Browse files Browse the repository at this point in the history
  • Loading branch information
segunadebayo committed May 21, 2024
1 parent e225bcb commit 16496d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/__stories__/icon.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { HiHeart } from "react-icons/hi"
import { Md3DRotation } from "react-icons/md"
import { Md3dRotation } from "react-icons/md"
import { Icon, type IconProps, createIcon } from "../src/components/icon"

export default {
Expand All @@ -24,7 +24,7 @@ const ArrowIcon = (props: IconProps) => (
export const CustomIcon = () => <ArrowIcon boxSize="40px" color="red.100" />

export const UsingReactIcon = () => (
<Icon as={Md3DRotation} boxSize="40px" color="tomato" />
<Icon as={Md3dRotation} boxSize="40px" color="tomato" />
)

const HeartIcon = createIcon({
Expand Down

0 comments on commit 16496d1

Please sign in to comment.