react-native-bootstrap-icons

Bootstrap's SVG icons converted to react-native-svg components

Usage no npm install needed!

<script type="module">
  import reactNativeBootstrapIcons from 'https://cdn.skypack.dev/react-native-bootstrap-icons';
</script>

README

react-native-bootstrap-icons

Bootstrap's icons converted to react-native-svg components.

Install

npm install react-native-bootstrap-icons

Usage

import React from "react";
import { View } from "react-native";

import CheckCircleFillIcon from "react-native-bootstrap-icons/icons/check-circle-fill";

export default function Component() {
  return (
    <View>
      <CheckCircleFillIcon width="50" height="50" fill="rgb(189, 189, 189)" />
    </View>
  );
}