JamesDelfini / react-native-bootstrap-icons

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

License:MIT License


Languages

Language:JavaScript 100.0%