👨🏻💻 오늘의 작업[ 1. Components 만들기 - CustomButton ] //// Button.swift// SoBunSoBun//// Created by 허성필 on 9/26/25.//import UIKitimport SnapKitclass Button: UIButton { enum ColorType { case primary, black } var colorType: ColorType = .primary { didSet { // colorType가 .primary 일 때면 primary300 컬러, 아니면 black 색상 self.backgroundColor = colorType == .prim..