comparison 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
comparison
equal deleted inserted replaced
20:24dfde3727c1 21:5135ff3343ae
1 //
2 // IndicatorPoint.swift
3 // StockCharts
4 //
5 // Created by Dennis Concepción Martín on 30/4/21.
6 //
7
8 import SwiftUI
9
10 public struct IndicatorPoint: View {
11 public var body: some View {
12 Circle()
13 .frame(width: 20, height: 20)
14 .foregroundColor(Color(.systemBlue))
15
16 }
17 }