Skip to content

Commit 3c7421b

Browse files
Update to react-icons 5.5
1 parent a0981f7 commit 3c7421b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"focus-trap-react": "^10.2.3",
3131
"react": "^18.2.0",
3232
"react-dom": "^18.2.0",
33-
"react-icons": "^4.9.0",
33+
"react-icons": "^5.5.0",
3434
"react-merge-refs": "^2.0.2"
3535
}
3636
}

src/card.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { LuAlertTriangle, LuInfo } from "react-icons/lu";
1+
import { LuTriangleAlert, LuInfo } from "react-icons/lu";
22
import { match, useAppkitConfig } from ".";
33

44

@@ -38,7 +38,7 @@ export const Card: React.FC<Props> = ({ kind, iconPos = "left", children, ...res
3838
{...rest}
3939
>
4040
{match(kind, {
41-
"error": () => <LuAlertTriangle />,
41+
"error": () => <LuTriangleAlert />,
4242
"info": () => <LuInfo css={{ color: config.colors.neutral60 }} />,
4343
})}
4444
<div>{children}</div>

0 commit comments

Comments
 (0)