Move SVGs into src (e.g., src/assets/icons) and reference them from there.
Or tell Tailwind to scan that folder by adding it in tailwind.config.js:
content: [ "./src/**/*.{html,ts}", "./public/svgs/**/*.svg" // add this line ]
After this, run ng serve again so Tailwind rebuilds.