defmodule OopsieDaisy.Components.Progress do @moduledoc """ Progress component with DaisyUI styling. Generated from: tmp/daisyui/packages/docs/src/routes/(routes)/components/progress/+page.md ## Examples <.progress>Content """ use Phoenix.Component # Component attr(:rest, :global, include: ~w(disabled form name value type)) @doc "Additional CSS classes" attr(:class, :string, default: "") @doc "Color variant" attr(:variant, :atom, default: nil, values: [nil, :primary, :secondary, :accent, :neutral, :info, :success, :warning, :error] ) @doc """ Renders a Progress component. """ slot(:inner_block, required: true) def progress(assigns) do ~H"""