Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/01-app/02-guides/local-development.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,10 @@ Libraries like `@material-ui/icons` or `react-icons` can import thousands of ico

```jsx
// Instead of this:
import { Icon1, Icon2 } from 'react-icons/md'
import * as Icons from 'react-icons/md'

// Do this:
import Icon1 from 'react-icons/md/Icon1'
import Icon2 from 'react-icons/md/Icon2'
import { Icon1, Icon2 } from 'react-icons/md'
```

Libraries like `react-icons` includes many different icon sets. Choose one set and stick with that set.
Expand Down
Loading