Khaled Ashraf
Khaled Ashraf

Reputation: 13

how to add a circled image Reactjs

as I am new to Reactjs I want to add an image I know I can use but I don't know how to make it circled if someone can help me with an example for using it.

Upvotes: 0

Views: 76

Answers (1)

Ryan C
Ryan C

Reputation: 426

You can just use css with a border-radius.

<img src='url' style={{ borderRadius: '50%'}} />

Upvotes: 2

Related Questions