Files
Reflect/Shared/Protocols/ChartViewItemBuildable.swift
Trey t f2565678be wip
2025-12-09 23:37:04 -06: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)
}