defmodule WebauthnComponents.BaseComponents do @moduledoc false use Phoenix.Component attr :id, :string attr :type, :string, default: "button" attr :disabled, :boolean, default: false attr :rest, :global slot :inner_block, required: true @doc false def button(assigns) do ~H""" """ end end