Git Product home page Git Product logo

Comments (3)

supersnager avatar supersnager commented on July 29, 2024

@Johnne25 It the same as in the previous question in #12.

First of all src property of <Avatar /> component accepts only image path, so you can't provide Avatar from react-avatar package by this property.

So in short, please try this:

in file MyAvatar.js define your custom avatar

import Avatar from "react-avatar"
export const MyAvatar () => <Avatar />

in main file

import {Avatar} from "@chatscope/chat-ui-kit-react";
import MyAvatar from "./MyAvatar";
<MyAvatar as={Avatar} src={<Avatar name='John'/>} />

or this:

import ReactAvatar from "react-avatar";

<ReactAvatar as="Avatar" size="40px" name="Lilly" />
// You can also add chatscope avatar class to react-avatar
<ReactAvatar as="Avatar" size="40px" className="cs-avatar" name="Lilly" />

Of course, it can require some CSS tweaking.

Please note: "as" property can be passed also as a string with component name, so you can combine it in many ways

from chat-ui-kit-react.

supersnager avatar supersnager commented on July 29, 2024

Related to: #8

from chat-ui-kit-react.

Johnne25 avatar Johnne25 commented on July 29, 2024

Thanks.

from chat-ui-kit-react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.