vds_ios/VDS/Components/TextFields/InputField/TextLinkModel.swift
Matt Bruce 0ab83fa7a8 updated onclick
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-05-09 13:53:26 -05:00

25 lines
523 B
Swift

//
// EntryFieldTextLinkModel.swift
// VDS
//
// Created by Matt Bruce on 4/16/24.
//
import Foundation
extension InputField {
public struct TextLinkModel {
///Text that goes in the Tab
public var text: String
///Click event when you click on a tab
public var onClick: ((String?) -> Void)
public init(text: String = "Apply", onClick: @escaping (String?) -> Void) {
self.text = text
self.onClick = onClick
}
}
}