cydia icons

This commit is contained in:
eevee
2025-01-01 23:52:40 +03:00
parent db35d3cc62
commit b06b3ec5b0
5 changed files with 0 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

@@ -2,9 +2,7 @@ import SwiftUI
import UIKit
extension Color {
init(hex: String) {
let hex = hex.trimmingCharacters(in: CharacterSet.alphanumerics.inverted)
var int: UInt64 = 0
Scanner(string: hex).scanHexInt64(&int)
@@ -1,7 +1,6 @@
import Foundation
extension Data {
static func random(_ length: Int) -> Data {
return Data((0 ..< length).map { _ in UInt8.random(in: UInt8.min ... UInt8.max) })
}