How can I add circular backgrounds around icons? I currently have an icon from react-icons and would like to add a circle around it. But so far some of my methods have not worked. Any input is valued.
below is the approach and thank you.
import { RiRocketLine } from 'react-icons/ri'
....
<div id='icons' className='icon'>
<RiRocketLine style={{ color: 'red' }} size="30px" />
</div>