Visual_Novel_iOS/crush/Crush/Src/Components/UI/CustomViews/LineView.swift

25 lines
426 B
Swift

//
// LineView.swift
// Crush
//
// Created by Leon on 2025/8/4.
//
import UIKit
class LineView: UIView{
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = .c.con
snp.makeConstraints { make in
make.height.equalTo(0.5)
}
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}