Skip to content

Commit

Permalink
fix: fix icon imports
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Oct 6, 2023
1 parent 15953ef commit a3eb479
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/categories/categories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BiSolidTree } from 'react-icons/bi';
import { FaCity } from 'react-icons/fa';
import { BiSolidTree } from 'react-icons/bi/index';
import { FaCity } from 'react-icons/fa/index';

import { Container } from '@/components/container';
import { Category } from '@/components/category';
Expand Down
2 changes: 1 addition & 1 deletion src/components/play-button/play-button.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BiPause, BiPlay } from 'react-icons/bi';
import { BiPause, BiPlay } from 'react-icons/bi/index';

import { usePlay } from '@/contexts/play';

Expand Down

0 comments on commit a3eb479

Please sign in to comment.