123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TOSettingsKeypadImage : UIImage
- + (UIImage *)buttonImageWithCornerRadius:(CGFloat)radius
- foregroundColor:(UIColor *)foregroundColor
- edgeColor:(UIColor *)edgeColor
- edgeThickness:(CGFloat)thickness;
- + (UIImage *)deleteIcon;
- @end
- NS_ASSUME_NONNULL_END
|