npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@alexandresalome/bootstrap-react-icons

v0.0.2

Published

Bootstrap icons as TypeScript React components

Downloads

8

Readme

Bootstrap React Icons

Provides Bootstrap React Icons as Typescript React Components.

Warning: this project has no tests.

Usage

Add the package to your project:

npm install @alexandresalome/bootstrap-react-icons

In your code:

import { SunIcon } from '@alexandresalome/bootstrap-react-icons';

And use it in your components to

export default function Title() {
    return (
        <p>
            Hello world
            {' '}
            <SunIcon />
        </p>
    );
}

The supported props are:

| Name | Description | Default | | --- | --- | --- | | size?: number | The size in pixels of the icon | 16 | | className?: string | The classname(s) to add to the svg | undefined |

Development

Clone this repository, install dependencies, and run the start npm script:

npm install
npm start

The src/ directory contains the code generated by npm start.

Supported versions

This library relies on two major vendor components, each component having their release cycle:

  1. Bootstrap icons
  2. React

This library follows its release cycle and starts today with the 0.1 version. For each major version, the supported vendor versions will be explicitly listed to facilitate the integration work.

Changelog

0.1-DEV

Required versions:

  • Supported Bootstrap icons: ^1.11
  • Supported React versions: ^18.2

Tested framework:

  • Gatsby: ^5.13

This is the initial release of the library.

Features:

  • React components for the icons

Troubleshooting

SVG transformation to react components

Make sure your bundler has a transformer for SVG files.

For Gatsby, use the gatsby-plugin-svgr plugin. If you are getting invalid image sizes, try disabling svgo in the plugin configuration.

Typescript types for SVG files

Add this to your types:

# svg.d.ts
declare module "*.svg" {
    import React from "react";
    export const ReactComponent: React.FunctionComponent<
        React.SVGProps<SVGSVGElement>
    >;
}