This commit is contained in:
Trey t
2025-12-09 23:37:04 -06:00
parent 3a10b4b8d6
commit f2565678be
1587 changed files with 7747 additions and 647 deletions

View File

@@ -0,0 +1,16 @@
//
// 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)
}