17 lines
296 B
Swift
17 lines
296 B
Swift
//
|
|
// ChartViewItemBuildable.swift
|
|
// Feels
|
|
//
|
|
// Created by Trey Tartt on 1/17/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
protocol ChartViewItemBuildable: View {
|
|
var color: Color { get }
|
|
var weekDay: Int { get }
|
|
var shape: BGShape { get }
|
|
|
|
init(color: Color, weekDay: Int, shape: BGShape)
|
|
}
|