healthicons-react

1.4.0 • Public • Published

React Health Icons

This package provides a simple and easy-to-use interface for accessing all the health icons within your React projects. You can see the full list of icons at healthicons

healthicons-react is an open source package that exports these Health Icons as React components that can be used in all of your React projects.

Installation

yarn add healthicons-react

or

npm i healthicons-react

Usage

import React from "react";
import { BloodBag } from "healthicons-react/dist/filled";

const App = () => {
  return <BloodBag />;
};

export default App;

Icons can take any standard SVG properties as optional props, e.g.

<BloodBag color="red" height={36} width={36} />

Default values for the most common props are given below:

Prop name Default value
color "currentColor"
width "1.5em"
height "1.5em"
strokeWidth 1.5
fill "none"

HealthIconsProvider

Tired of specifying the same props for every single icon, every time you use them? So were we. Use HealthIconsProvider to set the default icon props for everything inside HealthIconsProvider.

import {
  HealthIconsProvider,
  BloodBag,
} from "healthicons-react-native/dist/filled";
return (
  <HealthIconsProvider
    iconProps={{
      color: "#AAAAAA",
      strokeWidth: 1,
      width: "1em",
      height: "1em",
    }}
  >
    <SomeOtherContainer>
      <BloodBag />
    </SomeOtherContainer>
  </HealthIconsProvider>
);

Naming conventions for icons

The React components in this package are named using the PascalCase convention, which is a variation of their reference names (e.g. add-circle-outline becomes AddCircleOutline). However, some names have been modified to comply with React component naming rules or to match the branding conventions of organizations, such as GitHub. The exceptions to the naming convention are as follows:

HealthIcons Name React Native Component
blood-bag BloodBag

Package Sidebar

Install

npm i healthicons-react

Weekly Downloads

164

Version

1.4.0

License

MIT

Unpacked Size

12 MB

Total Files

7696

Last publish

Collaborators

  • stnrd