

export function WebhookSettingsLoader() {
  return (
    <div className="h-full w-full overflow-hidden py-8 pr-9">
      <div className="flex h-full w-full flex-col">
        <div className="flex items-center justify-between gap-4 border-b border-subtle pb-3.5">
          <div className="text-18 font-medium">Webhooks</div>
          <span className="h-8 w-28 rounded-sm bg-layer-1" />
        </div>
        <div className="h-full w-full overflow-y-auto">
          <div className="border-b border-subtle">
            <div>
              <span className="flex items-center justify-between gap-4 px-3.5 py-[18px]">
                <span className="h-5 w-36 rounded-sm bg-layer-1" />
                <span className="h-6 w-12 rounded-sm bg-layer-1" />
              </span>
            </div>
          </div>
        </div>
      </div>
    </div>
  );
}
