Skip to content

Commit

Permalink
Make RadixSegmentedPicker Accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
amirsaam committed Jul 29, 2024
1 parent 4a905da commit a2e8a80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/RadixUI/RadixPrimitives/RadixSegmentedPicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

import SwiftUI

struct RadixSegmentedPicker {
public struct RadixSegmentedPicker {
let backgroundColor: Color
let selectedColor: Color
let foregroundColor: Color
@discardableResult init(backgroundColor: Color, selectedColor: Color, foregroundColor: Color) {
@discardableResult public init(backgroundColor: Color, selectedColor: Color, foregroundColor: Color) {
self.backgroundColor = backgroundColor
self.selectedColor = selectedColor
self.foregroundColor = foregroundColor
Expand Down

0 comments on commit a2e8a80

Please sign in to comment.