react-native-bootstrap-icons
v1.5.0
Published
Bootstrap's SVG icons converted to react-native-svg components
Downloads
275
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>
);
}