1.48.0 • Published 5 months ago

react-avatar-editor-v1 v1.48.0

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

React Avatar Editor

A React package that provides an easy-to-use avatar editor along with a customizable avatar display component.

Installation

You can install the package via npm or yarn:

npm install react-avatar-editor-v1
# or
yarn add react-avatar-editor-v1

Usage

Importing Components

import React, { useState } from 'react';
import ReactAvatarEditor, { ReactNiceAvatar } from 'react-avatar-editor-v1';
import 'react-avatar-editor-v1/dist/main.scss';

const App = () => {
    const [config, setConfig] = useState({});

    return (
        <div>
            {/* Display the avatar */}
            <ReactNiceAvatar {...config} style={{ width: '10rem', height: '10rem' }} />

            {/* Avatar Editor Component */}
            <ReactAvatarEditor config={config} setConfig={setConfig} />
        </div>
    );
};

export default App;

Props

ReactAvatarEditor

PropTypeDescription
configAvatarFullConfigAvatar configuration object.
setConfigDispatch<SetStateAction<AvatarFullConfig>>Function to update the avatar config.
withAvatarListboolean (default: true)Show/hide additional avatars list.

ReactNiceAvatar

This is directly imported from react-nice-avatar and can be used to display an avatar based on the config state.

Demo

Check out the demo GIF to see it in action: Demo

Example Output

The ReactNiceAvatar component renders the avatar based on the provided configuration, while ReactAvatarEditor allows users to modify the avatar features in real time.

License

This project is licensed under the MIT License.

1.37.0

5 months ago

1.35.0

5 months ago

1.39.0

5 months ago

1.40.0

5 months ago

1.42.0

5 months ago

1.44.0

5 months ago

1.46.0

5 months ago

1.48.0

5 months ago

1.36.0

5 months ago

1.38.0

5 months ago

1.41.0

5 months ago

1.45.0

5 months ago

1.47.0

5 months ago

1.34.0

10 months ago

1.33.0

10 months ago

1.32.0

10 months ago

1.31.0

10 months ago

1.30.0

10 months ago

1.29.0

10 months ago

1.28.0

10 months ago

1.27.0

10 months ago

1.26.0

10 months ago

1.25.0

10 months ago

1.24.0

10 months ago

1.23.0

10 months ago

1.22.0

10 months ago

1.21.0

10 months ago

1.20.0

10 months ago

1.19.0

10 months ago

1.18.0

10 months ago

1.17.0

10 months ago

1.16.0

10 months ago

1.15.0

10 months ago

1.14.0

10 months ago

1.13.0

10 months ago

1.12.0

10 months ago

1.11.0

10 months ago

1.10.0

10 months ago

1.9.0

10 months ago

1.8.0

10 months ago

1.7.0

10 months ago

1.6.0

10 months ago

1.5.0

10 months ago

1.4.0

10 months ago

1.3.0

10 months ago

1.2.0

10 months ago

1.1.0

10 months ago