diff --git a/src/components/DreamCard.tsx b/src/components/DreamCard.tsx index 18a5ebc..b061723 100644 --- a/src/components/DreamCard.tsx +++ b/src/components/DreamCard.tsx @@ -5,6 +5,7 @@ import {NavLink} from "react-router-dom"; import {useEffect, useState} from "react"; import {getTextStyle} from '../styles/StyleUtils'; import {formatDateWithTime} from '../utils/DateUtils'; +import {FaMicrochip} from 'react-icons/fa6'; interface DreamCardProps { dream: Dream; @@ -24,11 +25,17 @@ export default function DreamCard({dream, user, animationDelay = 0}: DreamCardPr }, [animationDelay]); return ( -
  • + {dream.input.inputType === 'chip' && ( +
    + +
    + )}
    + {dream.input.inputType === 'chip' && ( +
    + +
    + )}
    {showUser && user && (