I’m going through Pragmatic Studio’s Full-Stack Phoenix course, but the HeroIcons aren’t working for me. Has anyone else run into this issue? Tailwind CSS classes seem to be applying just fine. Below are my config.exs and a sample .icon code snippet from the layouts.ex file.
# config.exs
config :tailwind,
version: "4.1.10",
raffley: [
args: ~w(
--input=assets/css/app.css
--output=priv/static/assets/css/app.css
),
cd: Path.expand("..", __DIR__)
]
# layouts.ex
<.icon name="hero-arrow-path" class="ml-1 size-3 motion-safe:animate-spin" />






















