view Sources/InteractiveCharts/LineChart/Helpers/IndicatorPoint.swift @ 20:24dfde3727c1 v0.2-alpha

Make variables and structures public
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 28 Apr 2021 20:24:54 +0200
parents 136de51a74f2
children
line wrap: on
line source

//
//  IndicatorPoint.swift
//  InteractiveCharts
//
//  Created by Dennis Concepción Martín on 26/4/21.
//

import SwiftUI

public struct IndicatorPoint: View {
    public var body: some View {
        Circle()
            .frame(width: 20, height: 20)
            .foregroundColor(Color(.systemBlue))
            
    }
}