// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_NTP_SEARCH_ENGINE_LOGO_UI_SEARCH_ENGINE_LOGO_STATE_H_
#define IOS_CHROME_BROWSER_NTP_SEARCH_ENGINE_LOGO_UI_SEARCH_ENGINE_LOGO_STATE_H_

#import <UIKit/UIKit.h>

// List of the state for the logo/doodle in the NTP
enum class SearchEngineLogoState {
  kNone,
  kLogo,
  kDoodle,
};

#endif  // IOS_CHROME_BROWSER_NTP_SEARCH_ENGINE_LOGO_UI_SEARCH_ENGINE_LOGO_STATE_H_
