Skip to content

Commit 0791295

Browse files
committed
Use up arrow instead of plus
1 parent 41dbef7 commit 0791295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/Card.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
FaCheckCircle,
2323
FaDollarSign,
2424
FaInfoCircle,
25-
FaPlusCircle,
25+
FaArrowCircleUp,
2626
FaTimesCircle,
2727
FaUsers,
2828
} from "react-icons/fa";
@@ -66,7 +66,7 @@ const Feature = ({ name, value }: FeatureProps) => {
6666
{value === true ? (
6767
<ColoredIcon icon={FaCheckCircle} color="green.400" />
6868
) : /premium/i.test(value) ? (
69-
<ColoredIcon icon={FaPlusCircle} color="blue.400" />
69+
<ColoredIcon icon={FaArrowCircleUp} color="blue.400" />
7070
) : (
7171
<ColoredIcon icon={FaInfoCircle} color="orange.300" />
7272
)}

0 commit comments

Comments
 (0)