How to use custom SVG for <Icon> in React F7

How do I use a custom SVG file for in React F7 ?

Custom SVG icons should be done in some general way:

<img src="path/to/svg">

Or

<Icon icon="my-icon">

and in CSS:

i.my-icon {
  background-image: url(path/to/svg)
}