Skip to content

Commit 193cf6d

Browse files
committed
removed react-icons
1 parent e0e9740 commit 193cf6d

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"next-auth": "^4.24.11",
2626
"react": "^19.0.0",
2727
"react-dom": "^19.0.0",
28-
"react-icons": "^5.5.0",
2928
"tailwind-merge": "^3.3.0"
3029
},
3130
"devDependencies": {

src/components/ui/FAQ.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client;"
22

3+
import { ChevronDown, ChevronUp } from 'lucide-react';
34
import { useState, useRef, useEffect } from 'react';
4-
import { FaChevronDown, FaChevronUp } from "react-icons/fa6";
55

66
type FAQProps = {
77
question: string;
@@ -29,14 +29,14 @@ const FAQ = ({ question, answer }: FAQProps) => {
2929
<p className='font-small text-xs md:text-md lg:text-lg lg:font-semibold mr-6 text-[#438eff]'>
3030
{question}
3131
</p>
32-
<FaChevronUp className='cursor-pointer text-2xl fill-[#438eff]'/>
32+
<ChevronUp className='cursor-pointer text-2xl text-[#438eff]'/>
3333
</>
3434
) : (
3535
<>
3636
<p className='font-small text-xs md:text-md lg:text-lg lg:font-semibold mr-6'>
3737
{question}
3838
</p>
39-
<FaChevronDown className='cursor-pointer text-2xl'/>
39+
<ChevronDown className='cursor-pointer text-2xl'/>
4040
</>
4141
)}
4242
</div>

yarn.lock

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3297,11 +3297,6 @@ react-dom@^19.0.0:
32973297
dependencies:
32983298
scheduler "^0.26.0"
32993299

3300-
react-icons@^5.5.0:
3301-
version "5.5.0"
3302-
resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-5.5.0.tgz#8aa25d3543ff84231685d3331164c00299cdfaf2"
3303-
integrity sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==
3304-
33053300
react-is@^16.13.1:
33063301
version "16.13.1"
33073302
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"

0 commit comments

Comments
 (0)