Skip to main content

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 install rn-remixicon

:::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