blob: a968f00f7a5df3bd902b6eedd47a682e3c653b09 [file] [log] [blame]
// 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_INTELLIGENCE_BWG_UI_BWG_UI_UTILS_H_
#define IOS_CHROME_BROWSER_INTELLIGENCE_BWG_UI_BWG_UI_UTILS_H_
#import <UIKit/UIKit.h>
// Common UI elements for BWG.
@interface BWGUIUtils : NSObject
// Creates the primary button with the given title.
+ (UIButton*)createPrimaryButtonWithTitle:(NSString*)title;
// Creates the secondary button with the given title.
+ (UIButton*)createSecondaryButtonWithTitle:(NSString*)title;
@end
#endif // IOS_CHROME_BROWSER_INTELLIGENCE_BWG_UI_BWG_UI_UTILS_H_