1.5.0 • Published 3 years ago

react-native-bootstrap-icons v1.5.0

Weekly downloads
8
License
MIT
Repository
github
Last release
3 years ago

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>
  );
}