-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Description
When using remixicon-react, icons don’t show up with autocomplete / IntelliSense in editors like VS Code. Unlike libraries such as lucide-react or @heroicons/react, I have to manually import each icon:
import Home2FillIcon from "remixicon-react/Home2FillIcon";It would be much smoother if the package supported auto-import and editor autocomplete, so I could just type <Home2FillIcon /> and have the IDE suggest it / auto-import it.
Expected Behavior
- Typing
<Home...in JSX should show available icons. - Selecting an icon should automatically insert the correct import statement.
Actual Behavior
- No autocomplete suggestions for icon names.
- Imports must be written manually for each icon.
Possible Solutions / Suggestions
- Provide a single entrypoint (like
lucide-react) where all icons are exported for autocomplete. - Consider generating a
index.d.tsfile with proper type exports for all icons.
Environment
- Editor: VS Code
Metadata
Metadata
Assignees
Labels
No labels