Socket
Socket
Sign inDemoInstall

@bearei/react-icon

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bearei/react-icon

A basic icon component that supports react and native react.


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

react-icon

A basic icon component that supports react and native react.

Installation

yarn add @bearei/react-icon --save

Parameters

NameTypeRequiredDescription
sizesmall medium largeSet the icon size
widthstring numberSet the width of the icon
heightstring numberSet the icon height
fillstringSet the icon fill color
contentReactNodeThe main area content of the icon
renderMain(props: IconMainProps) => ReactNodeRender the icon main
renderContainer(props: IconContainerProps) => ReactNodeRender the icon container

Use

import React from 'React';
import ReactDOM from 'react-dom';
import Icon from '@bearei/react-icon';

const icon = (
  <Icon
    renderMain={() => <i>{'icon'}</i>}
    renderContainer={({id, children}) => (
      <div data-id={id} tabIndex={1}>
        {children}
      </div>
    )}
  />
);

ReactDOM.render(icon, container);

Keywords

FAQs

Package last updated on 26 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc