defmodule OopsieDaisy.Components.Skeleton do @moduledoc """ Skeleton component with DaisyUI styling. Generated from: tmp/daisyui/packages/docs/src/routes/(routes)/components/skeleton/+page.md ## Examples <.skeleton>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 Skeleton component. """ slot(:inner_block, required: true) def skeleton(assigns) do ~H"""
<%= render_slot(@inner_block) %>
""" end end