How to add box-shadow-like shadows to the circle element of svg

the desired effect is as shown in the figure above

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--<link href="style.css" rel="stylesheet">-->
  </head>
  <body>

    <svg class="demo" viewBox="0 0 100 100" style="width: 50%;background: white">
      <circle cx="50" cy="50" r="10" fill="white"/>
    </svg>
  </body>
</html>
Feb.28,2021

Internet Explorer and Safari do not support SVG filters!

Menu