Socket
Socket
Sign inDemoInstall

react-random-avatars

Package Overview
Dependencies
3
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-random-avatars

Generate a unique, customizable, and visually appealing avatar


Version published
Weekly downloads
250
increased by1.21%
Maintainers
1
Install size
97.7 kB
Created
Weekly downloads
 

Readme

Source

React Random Avatars

React Random Avatars is a simple and easy-to-use React component that generates random avatars based on a provided name for your application. The generated avatar is unique and consistent for each name, which makes it suitable for user profile images or any other use case where a visual representation of a name is needed.

Installation

You can install the React Random Avatars component using npm:

npm install react-random-avatars

Usage

Here's a quick example of how to use the RandomAvatar component in your React application:

import { RandomAvatar } from "react-random-avatars";

function App({ name }) {
  return (
    <div>
      <RandomAvatar name={name} size={40} />
    </div>
  );
}

export default App;

Props

PropTypeDefaultDescription
namestring"Default Name"The input string used to differentiate the avatars
sizenumber40The size of the avatar in pixels (width & height)
squarebooleanfalseIf true, the avatar shape will be square
modestring"random"The avatar mode: "random", "pattern", or "colors"
patternarray-A 2D array of colors representing the custom avatar pattern (Required if mode is "pattern")

Avatar Modes

Random Avatar Mode (default)

This mode generates a random avatar based on the provided name. Each avatar is unique and consistent for each name.

Pattern Avatar Mode

This mode allows you to provide your own custom pattern to create an avatar. The pattern is a 2D array of colors representing the avatar's design. When selecting this mode, you must also provide a value for the pattern prop.

Colors Avatar Mode

This mode generates an avatar using a color blend based on the provided name. It creates a radial gradient with different colors to represent the name.

Contributing

Contributions are welcome! If you'd like to contribute and help the community grows, please follow these steps:

createrandomavatar.com

How to insert an avatar?

  1. Fork the repository;
  2. Build your custom, amazing avatar using this tool;
  3. Create a file with a custom name, here;
  4. Insert the file in the index, here;
  5. Open a pull request, don't you know how to do it? Read this;

Contributors

Thanks goes to these wonderful people (emoji key):

sagiproject
sagiproject

💻

This project follows the all-contributors specification. Contributions of any kind are welcome!

License

React Random Avatars is released under the MIT License.

Keywords

FAQs

Last updated on 25 Apr 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