import ComponentLibrary
import SwiftUI

struct Shutter: View {
    var body: some View {
        ZStack(alignment: .center) {
            Circle()
                .fill(Color.SemanticV1.backgroundTertiary)
                .frame(width: 72)
            Circle()
                .fill(Color.SemanticV1.backgroundPrimary)
                .frame(width: 64)
            Circle()
                .fill(Color.clear)
                .background(Image.Assets.shutterButton)
                .frame(width: 56)
        }
        .contentShape(.rect)
    }
}
