Skip to content

Commit

Permalink
add: Components(#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
sozohoy committed Mar 1, 2024
1 parent fc1a2d6 commit 3744932
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
18 changes: 18 additions & 0 deletions SUWIKI/SUWIKI/Utils/Component/FilledStar.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// FilledStar.swift
// SUWIKI
//
// Created by ν•œμ§€μ„ on 2/29/24.
//

import SwiftUI

struct FilledStar: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}

#Preview {
FilledStar()
}
18 changes: 18 additions & 0 deletions SUWIKI/SUWIKI/Utils/Component/Stars.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// Stars.swift
// SUWIKI
//
// Created by ν•œμ§€μ„ on 2/29/24.
//

import SwiftUI

struct Stars: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}

#Preview {
Stars()
}
18 changes: 18 additions & 0 deletions SUWIKI/SUWIKI/Utils/Component/UnFilledStar.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// UnFilledStar.swift
// SUWIKI
//
// Created by ν•œμ§€μ„ on 2/29/24.
//

import SwiftUI

struct UnFilledStar: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}

#Preview {
UnFilledStar()
}

0 comments on commit 3744932

Please sign in to comment.