defmodule <%= @module_name %>.UI.ThemeSwitcher do @moduledoc """ A component that provides a way to switch between dark mode and light mode. ## Example Usage Here is a basic example of setting up the theme switcher component: ```elixir ``` Place this component in your layout or any other part of your application where you want to provide a way to switch between themes. """ use Phoenix.Component alias <%= @module_name %>.UI.Button def root(assigns) do ~H""" """ end end