Use a shopping bag icon for the "Shopping List" button
Shopping bag with check! Heck yeah!
This commit is contained in:
parent
c96b726a61
commit
d7eb490ac0
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ import {
|
||||||
QuestionIcon,
|
QuestionIcon,
|
||||||
WarningTwoIcon,
|
WarningTwoIcon,
|
||||||
} from "@chakra-ui/icons";
|
} from "@chakra-ui/icons";
|
||||||
import { FaCartPlus } from "react-icons/fa6";
|
import { IoBagCheck } from "react-icons/io5";
|
||||||
import { CSSTransition, TransitionGroup } from "react-transition-group";
|
import { CSSTransition, TransitionGroup } from "react-transition-group";
|
||||||
import { useSearchParams } from "react-router-dom";
|
import { useSearchParams } from "react-router-dom";
|
||||||
|
|
||||||
|
@ -315,7 +315,7 @@ function GetTheseItemsButton({ outfitState }) {
|
||||||
as={isDisabled ? "button" : "a"}
|
as={isDisabled ? "button" : "a"}
|
||||||
href={isDisabled ? undefined : targetUrl}
|
href={isDisabled ? undefined : targetUrl}
|
||||||
target={isDisabled ? undefined : "_blank"}
|
target={isDisabled ? undefined : "_blank"}
|
||||||
icon={<FaCartPlus />}
|
icon={<IoBagCheck />}
|
||||||
colorScheme="purple"
|
colorScheme="purple"
|
||||||
size="sm"
|
size="sm"
|
||||||
isRound
|
isRound
|
||||||
|
|
Loading…
Reference in a new issue