mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
15 lines
190 B
Swift
15 lines
190 B
Swift
extension DivFontWeight {
|
|
func toInt() -> Int {
|
|
switch self {
|
|
case .light:
|
|
300
|
|
case .regular:
|
|
400
|
|
case .medium:
|
|
500
|
|
case .bold:
|
|
700
|
|
}
|
|
}
|
|
}
|