We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41dbef7 commit 0791295Copy full SHA for 0791295
components/Card.tsx
@@ -22,7 +22,7 @@ import {
22
FaCheckCircle,
23
FaDollarSign,
24
FaInfoCircle,
25
- FaPlusCircle,
+ FaArrowCircleUp,
26
FaTimesCircle,
27
FaUsers,
28
} from "react-icons/fa";
@@ -66,7 +66,7 @@ const Feature = ({ name, value }: FeatureProps) => {
66
{value === true ? (
67
<ColoredIcon icon={FaCheckCircle} color="green.400" />
68
) : /premium/i.test(value) ? (
69
- <ColoredIcon icon={FaPlusCircle} color="blue.400" />
+ <ColoredIcon icon={FaArrowCircleUp} color="blue.400" />
70
) : (
71
<ColoredIcon icon={FaInfoCircle} color="orange.300" />
72
)}
0 commit comments