24 lines
511 B
Swift
24 lines
511 B
Swift
//
|
|
// CarouselSlotItemModel.swift
|
|
// VDS
|
|
//
|
|
// Created by Kanamarlapudi, Vasavi on 30/06/24.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
import VDSCoreTokens
|
|
|
|
/// A custom data type that holds the style and component for a slot of the 'Carousel' component.
|
|
public struct CarouselSlotItemModel {
|
|
|
|
public let defaultHeight: CGFloat = 50.0
|
|
|
|
/// Component to be show on Carousel slot
|
|
public var component: UIView?
|
|
|
|
public init(component: UIView? = nil) {
|
|
self.component = component
|
|
}
|
|
}
|