Skip to content

Commit

Permalink
merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PriestFaria committed Dec 11, 2024
1 parent 3930b25 commit cbeb6cc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/cardDecision.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { motion, MotionValue } from 'framer-motion';
import HeartIcon from '@/assets/icons/heart.icon.tsx';
import CrossIcon from '@/assets/icons/cross.icon.tsx';

import { Icons } from '@/assets/icons/icons';
const CardDecision = ({
leftOpacity,
rightOpacity
Expand All @@ -12,10 +10,13 @@ const CardDecision = ({
return (
<div className="absolute w-full top-1/3 flex justify-center h-14 -translate-y-1/3 z-20">
<motion.div style={{ opacity: leftOpacity }} className="absolute">
<HeartIcon className="bg-white rounded-full p-3" fill="fill-primary" />
<Icons.heart
className="bg-white rounded-full p-3"
fill="fill-primary"
/>
</motion.div>
<motion.div style={{ opacity: rightOpacity }} className="absolute">
<CrossIcon
<Icons.cross
className="bg-primary rounded-full p-4"
fill="fill-primary-foreground"
/>
Expand Down

0 comments on commit cbeb6cc

Please sign in to comment.