Skip to content

Commit 98b3486

Browse files
committed
chore: change imports from @heroicons/react
1 parent 98b1d61 commit 98b3486

File tree

45 files changed

+104
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+104
-50
lines changed

src/app/(uc)/signin/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
'use client';
1818

19-
import { EyeIcon, EyeSlashIcon } from '@heroicons/react/24/outline';
2019
import clsx from 'clsx';
2120
import { signIn } from 'next-auth/react';
2221
import Link from 'next/link';
@@ -25,6 +24,7 @@ import { useState } from 'react';
2524
import { useForm } from 'react-hook-form';
2625
import { toast } from 'react-toastify';
2726

27+
import { EyeIcon, EyeSlashIcon } from '@/components/icon/outlined';
2828
import Loader from '@/components/Loader';
2929
import { isEmpty } from '@/utils';
3030
import { wrapOnChange } from '@/utils/form';

src/app/(uc)/signup/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
'use client';
1818

19-
import { EyeIcon, EyeSlashIcon } from '@heroicons/react/24/outline';
2019
import clsx from 'clsx';
2120
import { useSession } from 'next-auth/react';
2221
import Link from 'next/link';
@@ -28,6 +27,7 @@ import { toast } from 'react-toastify';
2827
import isEmail from 'validator/lib/isEmail';
2928
import { useAccount } from 'wagmi';
3029

30+
import { EyeIcon, EyeSlashIcon } from '@/components/icon/outlined';
3131
import Loader from '@/components/Loader';
3232

3333
import { registerEmail, sendCode } from '#/services/auth';

src/app/bounties/Filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
'use client';
1818

19-
import { ChevronUpIcon } from '@heroicons/react/20/solid';
2019
import clsx from 'clsx';
2120
import { motion } from 'framer-motion';
2221
import Image from 'next/image';
2322
import { useRouter, useSearchParams, usePathname } from 'next/navigation';
2423
import { useMemo, useState } from 'react';
2524

25+
import { ChevronUpIcon } from '@/components/icon/solid';
2626
import { ReactSelect } from '@/components/Select/ReactSelect';
2727
import { createQueryString } from '@/utils';
2828

src/app/creator/Tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
'use client';
1818

19-
import { ChevronUpIcon } from '@heroicons/react/20/solid';
2019
import clsx from 'clsx';
2120
import Link from 'next/link';
2221
import { usePathname } from 'next/navigation';
2322

2423
import { Disclosure } from '@/components/control';
24+
import { ChevronUpIcon } from '@/components/icon/solid';
2525

2626
const menus = [
2727
{

src/app/creator/UsersModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
'use client';
1818

19-
import { ArrowDownTrayIcon } from '@heroicons/react/24/outline';
2019
import clsx from 'clsx';
2120
import React, { useState, useMemo } from 'react';
2221
import { toast } from 'react-toastify';
2322
import useSWR from 'swr';
2423

2524
import { Button } from '@/components/Button';
25+
import { ArrowDownTrayIcon } from '@/components/icon/outlined';
2626
import { Modal } from '@/components/Modal';
2727
import { NoData } from '@/components/NoData';
2828
import { CommonListSkeleton } from '@/components/Skeleton/CommonListSkeleton';

src/app/creator/build/[type]/AppliedModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { EyeIcon } from '@heroicons/react/24/outline';
1817
import { useConnectModal } from '@rainbow-me/rainbowkit';
1918
import { writeContract } from '@wagmi/core';
2019
// import { formatTime } from '@/utils/date'
@@ -26,6 +25,7 @@ import { toast } from 'react-toastify';
2625
import { useAccount } from 'wagmi';
2726

2827
import { Button } from '@/components/Button';
28+
import { EyeIcon } from '@/components/icon/outlined';
2929
import Loader from '@/components/Loader';
3030
import { Modal } from '@/components/Modal';
3131
import { Confirm } from '@/components/Modal/Confirm';

src/app/creator/build/[type]/BountyList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { EyeIcon } from '@heroicons/react/24/outline';
1817
import Link from 'next/link';
1918
import { useRouter } from 'next/navigation';
2019
import { useCallback, useState } from 'react';
2120

2221
import { Button } from '@/components/Button';
22+
import { EyeIcon } from '@/components/icon/outlined';
2323
import { formatTime } from '@/utils/date';
2424

2525
import { changeBountyStatus } from '#/services/creator';

src/app/creator/build/[type]/Search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
'use client';
1818

19-
import { PlusIcon } from '@heroicons/react/24/outline';
2019
import Link from 'next/link';
2120
import { usePathname, useRouter, useSearchParams } from 'next/navigation';
2221
import { useMemo } from 'react';
2322
import { useDebouncedCallback } from 'use-debounce';
2423

2524
import { Button } from '@/components/Button';
25+
import { PlusIcon } from '@/components/icon/outlined';
2626
import { SearchIcon } from '@/components/Icons';
2727
import Input from '@/components/Input';
2828
import { ReactSelect } from '@/components/Select/ReactSelect';

src/app/creator/learn/[type]/ChallengesList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
'use client';
1818

19-
import { EyeIcon } from '@heroicons/react/24/outline';
2019
import Image from 'next/image';
2120
import Link from 'next/link';
2221
import { useState } from 'react';
2322
import ContentEditable from 'react-contenteditable';
2423

24+
import { EyeIcon } from '@/components/icon/outlined';
2525
import { HTMLDecode } from '@/utils';
2626
import { formatTime } from '@/utils/date';
2727

src/app/creator/learn/[type]/OpenCourseList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
'use client';
1818

19-
import { EyeIcon } from '@heroicons/react/24/outline';
2019
import Image from 'next/image';
2120
import Link from 'next/link';
2221
import { useState } from 'react';
2322
import ContentEditable from 'react-contenteditable';
2423

24+
import { EyeIcon } from '@/components/icon/outlined';
2525
import { HTMLDecode } from '@/utils';
2626

2727
import { useMediaUrl } from '#/state/application/hooks';

0 commit comments

Comments
 (0)