diff Sources/StockCharts/LineChart/Helpers/IndicatorPoint.swift @ 21:5135ff3343ae

Rename project to StockCharts
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Fri, 30 Apr 2021 17:40:33 +0200
parents Sources/InteractiveCharts/LineChart/Helpers/IndicatorPoint.swift@24dfde3727c1
children 766a1169564b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sources/StockCharts/LineChart/Helpers/IndicatorPoint.swift	Fri Apr 30 17:40:33 2021 +0200
@@ -0,0 +1,17 @@
+//
+//  IndicatorPoint.swift
+//  StockCharts
+//
+//  Created by Dennis Concepción Martín on 30/4/21.
+//
+
+import SwiftUI
+
+public struct IndicatorPoint: View {
+    public var body: some View {
+        Circle()
+            .frame(width: 20, height: 20)
+            .foregroundColor(Color(.systemBlue))
+            
+    }
+}