UNPKG

remix-icons-rn

Version:

React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.

10 lines (9 loc) 246 B
import { type IconNames } from "./icon-names"; declare interface RemixIconProps { name: IconNames; size?: number | string; color?: string; [key: string]: any; } declare const RemixIcon: React.FC<RemixIconProps>; export default RemixIcon;