GitSpacer / GitSpace

🌌 GitSpace
MIT License
7 stars 0 forks source link

[Chore] #25 GSText의 init 접근제어자를 public으로 명시 #26

Closed dahae0320 closed 7 months ago

dahae0320 commented 7 months ago

개요

✏️ 작업 사항

주요 로직

GSDesignSystem > GSText
public struct GSText: View {
    ...
-   init(style: GSTextStyle, string: String) {
+   public init(style: GSTextStyle, string: String) {
        self.style = style
        self.string = string
    }
   ...
}