defmodule OopsieDaisy.Components.Timeline do @moduledoc """ Timeline component with DaisyUI styling. Generated from: tmp/daisyui/packages/docs/src/routes/(routes)/components/timeline/+page.md ## Examples <.timeline>Content """ use Phoenix.Component # Component attr(:rest, :global, include: ~w(disabled form name value type)) @doc "Additional CSS classes" attr(:class, :string, default: "") @doc """ Renders a Timeline component. """ slot(:inner_block, required: true) def timeline(assigns) do ~H"""
<%= render_slot(@inner_block) %>
""" end end