mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
14 lines
234 B
Objective-C
Executable file
14 lines
234 B
Objective-C
Executable file
//
|
|
// VUGradientButton.h
|
|
//
|
|
// Created by Boris Buegling.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface VUGradientButton : UIButton
|
|
|
|
@property (nonatomic, strong) UIColor* highColor;
|
|
@property (nonatomic, strong) UIColor* lowColor;
|
|
|
|
@end
|