mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-17 22:46:42 +01:00
17 lines
270 B
Swift
Executable File
17 lines
270 B
Swift
Executable File
//
|
|
// TabIconInfo.swift
|
|
// SwiftUI_Jike
|
|
//
|
|
// Created by alexyang on 2019/6/5.
|
|
// Copyright © 2019 alexyang. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct TabIcon: Hashable, Codable, Identifiable {
|
|
var id: Int
|
|
var title: String
|
|
var imgName: String
|
|
}
|
|
|