feat(creator): 팬Talk 탭을 추가한다
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import SwiftUI
|
||||
|
||||
struct CreatorChannelFloatingIconButton: View {
|
||||
let imageName: String
|
||||
let backgroundColor: Color
|
||||
let accessibilityLabel: String
|
||||
let action: () -> Void
|
||||
|
||||
var body: some View {
|
||||
Button(action: action) {
|
||||
Image(imageName)
|
||||
.resizable()
|
||||
.frame(width: 38, height: 38)
|
||||
.frame(width: 66, height: 66)
|
||||
.background(backgroundColor)
|
||||
.clipShape(Circle())
|
||||
}
|
||||
.accessibilityLabel(accessibilityLabel)
|
||||
.buttonStyle(.plain)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user