vds_ios/VDS/Components/TextFields/InputField/TextLinkModel.swift
Matt Bruce 7e2fdb30e3 removed accessibleText
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2024-04-19 15:03:08 -05:00

25 lines
515 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: ((TextLink) -> Void)?
public init(text: String, onClick: ((TextLink) -> Void)? = nil) {
self.text = text
self.onClick = onClick
}
}
}