Getting Started
rn-remixicon brings the full Remix Icon library to React Native as typed SVG components. One package, 3,000+ icons, and TypeScript autocomplete out of the box.
Installation
- npm
- yarn
- Expo
npm install rn-remixicon
yarn add rn-remixicon
npx expo install rn-remixicon react-native-svg
:::info Peer dependency
rn-remixicon requires react-native-svg ≥ 15.0.0.
Follow the react-native-svg installation guide for your target platform before proceeding.
:::
Your first icon
import { RemixIcon } from 'rn-remixicon';
export default function App() {
return (
<RemixIcon
name="home-line"
size={24}
color="#0090ff"
/>
);
}
That's all you need. The name prop is fully autocompleted — your editor will suggest every available icon.
Next steps
- Usage & API → — Full props reference, TypeScript tips, subpath imports, and code recipes.
- Platform support → — Compatibility table and per-platform setup notes.