Reputation: 13
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
Reputation: 426
You can just use css with a border-radius.
<img src='url' style={{ borderRadius: '50%'}} />
Upvotes: 2