defmodule <%= @module_name %>.UI.ThemeSwitcher do
@moduledoc """
A module that provides a way to switch between dark mode and light mode.
"""
use Phoenix.Component
def root(assigns) do
~H"""
<<%= @module_name %>.UI.Button.root id="theme-switcher" variant="secondary" size="sm" phx-hook="ThemeSwitcher">
<%= @module_name %>.UI.Button.root>
"""
end
end