chore: use minus icon
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useState } from "react"
|
import { useState } from "react"
|
||||||
|
import { Minus } from "react-feather"
|
||||||
|
|
||||||
import { Lang } from "@/constants/languages"
|
import { Lang } from "@/constants/languages"
|
||||||
import { _ } from "@/lib/translation"
|
import { _ } from "@/lib/translation"
|
||||||
@@ -266,7 +267,7 @@ function BenefitCard({ comparedValues, title, description }: BenefitCardProps) {
|
|||||||
|
|
||||||
function BenefitValue({ benefit }: BenefitValueProps) {
|
function BenefitValue({ benefit }: BenefitValueProps) {
|
||||||
if (!benefit.unlocked) {
|
if (!benefit.unlocked) {
|
||||||
return "-"
|
return <Minus />
|
||||||
}
|
}
|
||||||
if (!benefit.value) {
|
if (!benefit.value) {
|
||||||
return <CheckCircle height={32} width={32} />
|
return <CheckCircle height={32} width={32} />
|
||||||
|
|||||||
Reference in New Issue
Block a user