Socket
Socket
Sign inDemoInstall

@bearei/react-icon

Package Overview
Dependencies
4
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bearei/react-icon

Base icon components that support React and React native


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

react-icon

Base icon components that support React and React native

Installation

yarn add @bearei/react-icon --save

Parameters

NameTypeRequiredDescription
sizesmall medium largeIcon size
widthstring numberIcon width
heightstring numberIcon height
fillstringIcon fill color
contentReactNodeIcon content
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

Last updated on 04 Jan 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc