Files
Reflect/Shared/Protocols/ChartViewItemBuildable.swift
2022-03-20 02:45:51 -05:00

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)
}